From f7cd6d0c8e595ab70f56c3a17a805c453f0144de Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Fri, 31 Oct 2025 14:42:32 +0200 Subject: [PATCH 01/30] refactor(cell-merging): change data for hgrid custom strategy sample --- .../src/MultiColumnsExportData.json | 97 ++++++++++++++++++- 1 file changed, 96 insertions(+), 1 deletion(-) diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json index 483f76e929..88d6830fb7 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/MultiColumnsExportData.json @@ -362,6 +362,101 @@ "PostalCode": "10100", "Country": "Italy", "Phone": "011-4988260", - "Fax": "011-4988261" + "Fax": "011-4988261", + "ChildCompanies": [ + { + "ID": "ITSR1", + "CompanyName": "Italia Sourcing", + "ContactName": "Luca Rossi", + "ContactTitle": "Sales Representative", + "Address": "Via Roma 1", + "City": "Rome", + "Region": "Lazio", + "PostalCode": "00100", + "Country": "Italy", + "Phone": "06-555-0101", + "Fax": "06-555-0102" + }, + { + "ID": "ITSR2", + "CompanyName": "Roma Exports", + "ContactName": "Chiara Conti", + "ContactTitle": "Sales Representative", + "Address": "Piazza Navona 5", + "City": "Rome", + "Region": "Lazio", + "PostalCode": "00186", + "Country": "Italy", + "Phone": "06-555-0201", + "Fax": "06-555-0202" + }, + { + "ID": "ITOWN1", + "CompanyName": "Milano Retail", + "ContactName": "Marco Neri", + "ContactTitle": "Owner", + "Address": "Corso Buenos Aires 12", + "City": "Milan", + "Region": "Lombardia", + "PostalCode": "20100", + "Country": "Italy", + "Phone": "02-555-0101", + "Fax": "02-555-0102" + } + ] + }, + { + "ID": "FRNS2", + "CompanyName": "Franchi Logistics", + "ContactName": "Giulia Bianchi", + "ContactTitle": "Sales Representative", + "Address": "Via Po 12", + "City": "Torino", + "Region": "Torino", + "PostalCode": "10121", + "Country": "Italy", + "Phone": "011-4988262", + "Fax": "011-4988263", + "ChildCompanies": [ + { + "ID": "ITSR3", + "CompanyName": "Torino Foods", + "ContactName": "Alessia Greco", + "ContactTitle": "Sales Representative", + "Address": "Via Garibaldi 3", + "City": "Torino", + "Region": "Piemonte", + "PostalCode": "10121", + "Country": "Italy", + "Phone": "011-555-0001", + "Fax": "011-555-0002" + }, + { + "ID": "ITSR4", + "CompanyName": "Torino Traders", + "ContactName": "Fabio De Luca", + "ContactTitle": "Sales Representative", + "Address": "Via Roma 25", + "City": "Torino", + "Region": "Piemonte", + "PostalCode": "10123", + "Country": "Italy", + "Phone": "011-555-0003", + "Fax": "011-555-0004" + }, + { + "ID": "ITSA1", + "CompanyName": "Liguria Supplies", + "ContactName": "Gianni Marino", + "ContactTitle": "Sales Agent", + "Address": "Via XX Settembre 15", + "City": "Genova", + "Region": "Liguria", + "PostalCode": "16121", + "Country": "Italy", + "Phone": "010-555-0101", + "Fax": "010-555-0102" + } + ] } ] From 2db0e2485bee5f349e757c75e82a6389b62290ae Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Fri, 31 Oct 2025 14:43:33 +0200 Subject: [PATCH 02/30] fix(cell-merging): fix child grid not loading data in hgrid sample --- .../hierarchical-grid/cell-merge-custom-sample/src/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx index 3dc44b74c4..d2e88a63d5 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/src/index.tsx @@ -33,6 +33,7 @@ export default function App() {
Date: Tue, 4 Nov 2025 14:30:20 +0200 Subject: [PATCH 03/30] refactor(row-drag-base): change tgrid and hgrid samples to mimic angular samples --- .../row-drag-base/src/index.css | 20 ++- .../row-drag-base/src/index.tsx | 135 +++++------------- .../tree-grid/row-drag-base/src/index.css | 20 ++- .../tree-grid/row-drag-base/src/index.tsx | 112 +++++---------- 4 files changed, 102 insertions(+), 185 deletions(-) diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.css b/samples/grids/hierarchical-grid/row-drag-base/src/index.css index 1fcfe3aac1..6280a6f59e 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.css +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.css @@ -2,6 +2,22 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + justify-content: space-evenly; + margin: 1rem; + align-items: center; +} + +.drop-area { + width: 240px; + height: 220px; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + gap: 0.5rem; + border: 1px dashed rgba(0, 0, 0, 0.5); + border-radius: 2px; + background: #dcdcdc; + color: #111; + text-align: center; } diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx index 07b74e65e6..5a198e1373 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx @@ -8,42 +8,52 @@ import { IgrRowIsland, IgrRowDragEndEventArgs, } from "igniteui-react-grids"; +import { IgrIcon } from "igniteui-react"; import { SingersData } from "./SingersData"; import "igniteui-react-grids/grids/themes/light/bootstrap.css"; export default function App() { const singersData = new SingersData(); - const rightHGridRef = useRef(null); + const treeGridRef = useRef(null); - const RowDragEnd = (evt: IgrRowDragEndEventArgs) => { - const leftGrid = evt.target as IgrHierarchicalGrid; + const onRowDragEnd = (evt: IgrRowDragEndEventArgs) => { const ghostElement = evt.detail.dragDirective.ghostElement; if (ghostElement != null) { const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = document.getElementById("hierarchicalGrid2").getBoundingClientRect(); + const dropAreaPosition = document + .getElementById("dropArea") + .getBoundingClientRect(); - const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; - const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; + const withinXBounds = + dragElementPos.x >= dropAreaPosition.x && + dragElementPos.x <= dropAreaPosition.x + dropAreaPosition.width; + const withinYBounds = + dragElementPos.y >= dropAreaPosition.y && + dragElementPos.y <= dropAreaPosition.y + dropAreaPosition.height; if (withinXBounds && withinYBounds) { - leftGrid.deleteRow(evt.detail.dragData.key); - rightHGridRef.current.addRow(evt.detail.dragData.data); + treeGridRef.current.deleteRow(evt.detail.dragData.key); } } - } + }; return (
+
+ delete +
Drag a row here to delete it
+
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - + (null); const employeesData = new EmployeesNestedTreeData(); - const rightTGridRef = useRef(null); - // Recursive function to add the row and its children - const addRowAndChildren = (row: EmployeesNestedTreeDataItem, newData: EmployeesNestedTreeDataItem[]) => { - if (newData.includes(row)) { - return; - } - newData.push(row); - const children = employeesData.filter(emp => emp.ParentID === row.ID); - children.forEach(child => addRowAndChildren(child, newData)); - } - - const RowDragEnd = (evt: IgrRowDragEndEventArgs) => { - const leftGrid = evt.target as IgrTreeGrid; + const onRowDragEnd = (evt: IgrRowDragEndEventArgs) => { const ghostElement = evt.detail.dragDirective.ghostElement; + if (ghostElement != null) { const dragElementPos = ghostElement.getBoundingClientRect(); - const gridPosition = document.getElementById("treeGrid2").getBoundingClientRect(); + const dropAreaPosition = document + .getElementById("dropArea") + .getBoundingClientRect(); - const withinXBounds = dragElementPos.x >= gridPosition.x && dragElementPos.x <= gridPosition.x + gridPosition.width; - const withinYBounds = dragElementPos.y >= gridPosition.y && dragElementPos.y <= gridPosition.y + gridPosition.height; + const withinXBounds = + dragElementPos.x >= dropAreaPosition.x && + dragElementPos.x <= dropAreaPosition.x + dropAreaPosition.width; + const withinYBounds = + dragElementPos.y >= dropAreaPosition.y && + dragElementPos.y <= dropAreaPosition.y + dropAreaPosition.height; if (withinXBounds && withinYBounds) { - const newData = [...rightTGridRef.current.data]; - const draggedRowData = evt.detail.dragData.data; - - addRowAndChildren(draggedRowData, newData); - rightTGridRef.current.data = newData; - leftGrid.deleteRow(evt.detail.dragData.key); + treeGridRef.current.deleteRow(evt.detail.dragData.key); } } - } + }; return (
+
+ delete +
Drag a row here to delete it
+
+ - - - - - - - - - - - - + editable={true} + > - + editable={true} + > - + editable={true} + > - + editable={true} + >
From 9e290de899b76517e3f2a8c6b419f83e7b205103 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Tue, 4 Nov 2025 17:06:18 +0200 Subject: [PATCH 04/30] fix(row-drag-base): change sizings so samples fit in iframes --- .../grids/hierarchical-grid/row-drag-base/src/index.css | 7 +++++-- .../grids/hierarchical-grid/row-drag-base/src/index.tsx | 3 ++- samples/grids/tree-grid/row-drag-base/src/index.css | 7 +++++-- samples/grids/tree-grid/row-drag-base/src/index.tsx | 3 ++- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.css b/samples/grids/hierarchical-grid/row-drag-base/src/index.css index 6280a6f59e..d3985cd442 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.css +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.css @@ -2,9 +2,12 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + display: flex; + flex-wrap: nowrap; + justify-content: flex-start; align-items: center; + gap: 2rem; + margin: 1rem; } .drop-area { diff --git a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx index 5a198e1373..eee3f7626d 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-drag-base/src/index.tsx @@ -51,7 +51,8 @@ export default function App() { autoGenerate={false} data={singersData} primaryKey="ID" - width="40%" + height="480px" + width="70%" rowDraggable={true} onRowDragEnd={onRowDragEnd} > diff --git a/samples/grids/tree-grid/row-drag-base/src/index.css b/samples/grids/tree-grid/row-drag-base/src/index.css index 6280a6f59e..d3985cd442 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.css +++ b/samples/grids/tree-grid/row-drag-base/src/index.css @@ -2,9 +2,12 @@ /* https://static.infragistics.com/xplatform/css/samples */ .wrapper { - justify-content: space-evenly; - margin: 1rem; + display: flex; + flex-wrap: nowrap; + justify-content: flex-start; align-items: center; + gap: 2rem; + margin: 1rem; } .drop-area { diff --git a/samples/grids/tree-grid/row-drag-base/src/index.tsx b/samples/grids/tree-grid/row-drag-base/src/index.tsx index 4331e6c231..0cf3a385b7 100644 --- a/samples/grids/tree-grid/row-drag-base/src/index.tsx +++ b/samples/grids/tree-grid/row-drag-base/src/index.tsx @@ -51,7 +51,8 @@ export default function App() { data={employeesData} primaryKey="ID" foreignKey="ParentID" - width="40%" + height="480px" + width="70%" autoGenerate={false} moving={true} rowDraggable={true} From 798a50890a3eb7fbc1e9d1cdb398cfe0c2f780fb Mon Sep 17 00:00:00 2001 From: Riva Ivanova <49126110+RivaIvanova@users.noreply.github.com> Date: Thu, 27 Nov 2025 14:52:27 +0200 Subject: [PATCH 05/30] fix(text-area): add gap to resize sample (#971) --- samples/inputs/textarea/resize/src/index.css | 8 +++++++- samples/inputs/textarea/resize/src/index.tsx | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/samples/inputs/textarea/resize/src/index.css b/samples/inputs/textarea/resize/src/index.css index 0fe9368715..a0ecf1b7f2 100644 --- a/samples/inputs/textarea/resize/src/index.css +++ b/samples/inputs/textarea/resize/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ -/* https://static.infragistics.com/xplatform/css/samples */ \ No newline at end of file +/* https://static.infragistics.com/xplatform/css/samples */ + +.container { + display: flex; + flex-direction: column; + gap: 1rem; +} \ No newline at end of file diff --git a/samples/inputs/textarea/resize/src/index.tsx b/samples/inputs/textarea/resize/src/index.tsx index 1d13935d3b..298e0161b6 100644 --- a/samples/inputs/textarea/resize/src/index.tsx +++ b/samples/inputs/textarea/resize/src/index.tsx @@ -7,7 +7,7 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css'; export default function TextAreaResize() { return ( -
+

This textarea does not resize and uses a scroll bar to show overflow text.

From 1cc6b4533c8ac2b0e0aabae52714dcb800ec69c1 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Thu, 27 Nov 2025 16:19:28 +0200 Subject: [PATCH 06/30] refactor(grids): change button text in column pinning both side samples --- .../grids/grid/column-pinning-both-sides/src/index.tsx | 10 +++++----- .../column-pinning-both-sides/src/index.tsx | 8 ++++---- .../tree-grid/column-pinning-both-sides/src/index.tsx | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx index be088f9bc1..7a3f40a11d 100644 --- a/samples/grids/grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -86,13 +86,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -115,5 +115,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); -root.render(); \ No newline at end of file +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx index d89d49303c..0830e8f57e 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -71,13 +71,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -192,5 +192,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render(); diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx index 62e62f468a..12e84785ea 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -72,13 +72,13 @@ export default function App() { - Unpin Column + Unpin Selected Columns - Pin Left + Pin Selected Left - Pin Right + Pin Selected Right @@ -127,5 +127,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot(document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById("root")); root.render(); From 702d2e7801b53d159ccc9af2268aaa6282a8d0fb Mon Sep 17 00:00:00 2001 From: Bozhidara Pachilova <35433937+ddaribo@users.noreply.github.com> Date: Mon, 1 Dec 2025 10:03:33 +0200 Subject: [PATCH 07/30] fix(calendar-formatting): set radio value to state (#977) --- samples/scheduling/calendar/formatting/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/scheduling/calendar/formatting/src/index.tsx b/samples/scheduling/calendar/formatting/src/index.tsx index 039418fa5d..538691503c 100644 --- a/samples/scheduling/calendar/formatting/src/index.tsx +++ b/samples/scheduling/calendar/formatting/src/index.tsx @@ -25,7 +25,7 @@ export default class CalendarFormatting extends React.Component { public render(): JSX.Element { return (
- + EN From 0a4b89ac2ab3152f23e2eafcb4d9f1618d77d32e Mon Sep 17 00:00:00 2001 From: MonikaKirkova <47036441+MonikaKirkova@users.noreply.github.com> Date: Tue, 2 Dec 2025 17:06:59 +0200 Subject: [PATCH 08/30] Add handleChipRemove for all chip samples (#980) * fix(chip): add handleChipRemove for all chip samples * chore(chip): apply review suggestions --- samples/inputs/chip/multiple/src/index.tsx | 9 +++++++-- samples/inputs/chip/overview/src/index.tsx | 7 ++++++- samples/inputs/chip/size/src/index.tsx | 11 ++++++++--- samples/inputs/chip/styling/src/index.tsx | 7 ++++++- samples/inputs/chip/variants/src/index.tsx | 15 ++++++++++----- 5 files changed, 37 insertions(+), 12 deletions(-) diff --git a/samples/inputs/chip/multiple/src/index.tsx b/samples/inputs/chip/multiple/src/index.tsx index 601c4712f7..c18a64e808 100644 --- a/samples/inputs/chip/multiple/src/index.tsx +++ b/samples/inputs/chip/multiple/src/index.tsx @@ -32,11 +32,16 @@ export default class ChipMultiple extends React.Component { ); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + @@ -45,7 +50,7 @@ export default class ChipMultiple extends React.Component { - + diff --git a/samples/inputs/chip/overview/src/index.tsx b/samples/inputs/chip/overview/src/index.tsx index 0a127f6bb0..3434f50dd9 100644 --- a/samples/inputs/chip/overview/src/index.tsx +++ b/samples/inputs/chip/overview/src/index.tsx @@ -10,10 +10,15 @@ export default class ChipOverview extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip
diff --git a/samples/inputs/chip/size/src/index.tsx b/samples/inputs/chip/size/src/index.tsx index b5934d2f12..d1814fa8db 100644 --- a/samples/inputs/chip/size/src/index.tsx +++ b/samples/inputs/chip/size/src/index.tsx @@ -10,16 +10,21 @@ export default class ChipSize extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip - + Chip - + Chip
diff --git a/samples/inputs/chip/styling/src/index.tsx b/samples/inputs/chip/styling/src/index.tsx index 8bf0e56de2..3023f4721f 100644 --- a/samples/inputs/chip/styling/src/index.tsx +++ b/samples/inputs/chip/styling/src/index.tsx @@ -11,10 +11,15 @@ export default class ChipStyling extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Chip
diff --git a/samples/inputs/chip/variants/src/index.tsx b/samples/inputs/chip/variants/src/index.tsx index 376c79ea36..2369b4eb7f 100644 --- a/samples/inputs/chip/variants/src/index.tsx +++ b/samples/inputs/chip/variants/src/index.tsx @@ -10,22 +10,27 @@ export default class ChipVariants extends React.Component { super(props); } + private handleChipRemove = (event: CustomEvent) => { + const chip = event.target as IgrChip; + chip.remove(); + } + public render(): JSX.Element { return (
- + Primary - + Info - + Success - + Warning - + Danger
From 2b020b9b05555d295feb0110d14979a0a12e0c76 Mon Sep 17 00:00:00 2001 From: tfsbuild Date: Fri, 5 Dec 2025 14:34:13 +0200 Subject: [PATCH 09/30] Adding changes from build igniteui-xplat-examples-output+PRs_2025.12.5.2 --- .../advanced-filtering-style/src/index.css | 8 +- .../grid/binding-nested-data-1/src/index.tsx | 3 +- .../column-collapsible-groups/src/index.tsx | 8 +- .../grid/column-moving-options/src/index.tsx | 6 +- .../grid/column-moving-styles/src/index.tsx | 6 +- .../grid/column-pinning-options/src/index.tsx | 6 +- samples/grids/grid/paste/src/index.css | 6 + samples/grids/grid/paste/src/index.tsx | 54 +- samples/grids/grid/row-reorder/src/index.tsx | 3 + .../advanced-filtering-style/src/index.css | 60 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../column-moving-options/src/index.tsx | 6 +- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../column-moving-styles/src/index.tsx | 6 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../column-pinning-options/src/index.tsx | 6 +- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomersData.json | 50398 ++++++---------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../src/HierarchicalCustomers.json | 50192 ++++++--------- .../row-reorder/src/index.tsx | 3 + .../advanced-filtering-style/src/index.css | 8 +- .../column-moving-options/src/index.tsx | 6 +- .../column-moving-styles/src/index.tsx | 20 +- .../column-pinning-options/src/index.tsx | 6 +- .../column-pinning-styles/src/index.tsx | 6 +- .../grids/tree-grid/row-reorder/src/index.tsx | 3 + 32 files changed, 237081 insertions(+), 366483 deletions(-) diff --git a/samples/grids/grid/advanced-filtering-style/src/index.css b/samples/grids/grid/advanced-filtering-style/src/index.css index 397fba0990..9743ad5499 100644 --- a/samples/grids/grid/advanced-filtering-style/src/index.css +++ b/samples/grids/grid/advanced-filtering-style/src/index.css @@ -2,7 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #grid { - --ig-grid-filtering-row-background: #ffcd0f; - --ig-grid-filtering-background-or: #d83434; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/grid/binding-nested-data-1/src/index.tsx b/samples/grids/grid/binding-nested-data-1/src/index.tsx index 1e4841d7b4..35a37d6769 100644 --- a/samples/grids/grid/binding-nested-data-1/src/index.tsx +++ b/samples/grids/grid/binding-nested-data-1/src/index.tsx @@ -59,7 +59,8 @@ export default class Sample extends React.Component { field="Employees" header="Employees" bodyTemplate={this.webGridNestedDataCellTemplate} - width="20%"> + width="20%" + minWidth="275px"> { expanded={false}> + header="Name"> + header="Unit Price"> { visibleWhenCollapsed={false}> diff --git a/samples/grids/grid/column-moving-options/src/index.tsx b/samples/grids/grid/column-moving-options/src/index.tsx index 9f7e972d35..4fd453d4d0 100644 --- a/samples/grids/grid/column-moving-options/src/index.tsx +++ b/samples/grids/grid/column-moving-options/src/index.tsx @@ -157,9 +157,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-moving-styles/src/index.tsx b/samples/grids/grid/column-moving-styles/src/index.tsx index 728984eaae..e7289ab61a 100644 --- a/samples/grids/grid/column-moving-styles/src/index.tsx +++ b/samples/grids/grid/column-moving-styles/src/index.tsx @@ -151,9 +151,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/column-pinning-options/src/index.tsx b/samples/grids/grid/column-pinning-options/src/index.tsx index 9f25207a4e..7c8a09942d 100644 --- a/samples/grids/grid/column-pinning-options/src/index.tsx +++ b/samples/grids/grid/column-pinning-options/src/index.tsx @@ -116,9 +116,9 @@ export default class Sample extends React.Component { public webGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/grid/paste/src/index.css b/samples/grids/grid/paste/src/index.css index 98682b8543..89ff45c856 100644 --- a/samples/grids/grid/paste/src/index.css +++ b/samples/grids/grid/paste/src/index.css @@ -1,2 +1,8 @@ /* shared styles are loaded from: */ /* https://static.infragistics.com/xplatform/css/samples */ + + .edited { + font-style: italic; + color: gray; + } + diff --git a/samples/grids/grid/paste/src/index.tsx b/samples/grids/grid/paste/src/index.tsx index 5280a0e29c..d145947bd5 100644 --- a/samples/grids/grid/paste/src/index.tsx +++ b/samples/grids/grid/paste/src/index.tsx @@ -9,6 +9,7 @@ import { IgrGrid, IgrGridToolbar, IgrGridToolbarActions, IgrGridToolbarExporter, import { ComponentRenderer, PropertyEditorPanelDescriptionModule, WebGridDescriptionModule } from 'igniteui-react-core'; import { InvoicesDataItem, InvoicesData } from './InvoicesData'; import { IgrPropertyEditorPropertyDescriptionChangedEventArgs } from 'igniteui-react-layouts'; +import { IgrRowType } from 'igniteui-react-grids'; import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; import 'igniteui-webcomponents/themes/light/bootstrap.css'; @@ -67,6 +68,7 @@ export default class Sample extends React.Component { autoGenerate={false} data={this.invoicesData} onRendered={this.webGridPasteFromExcel} + rowClasses={this.webGridEditedRowClassesHandler} ref={this.gridRef} id="grid" primaryKey="OrderID"> @@ -157,6 +159,7 @@ export default class Sample extends React.Component { private txtArea: any; public pasteMode = "Paste starting from active cell"; + public updatedRecsPK: any[] = []; public get textArea() { if(!this.txtArea) { @@ -202,7 +205,6 @@ export default class Sample extends React.Component { const grid = this.grid as any; const columns = grid.visibleColumns; const pk = grid.primaryKey; - const addedData: any[] = []; for (const curentDataRow of processedData) { const rowData = {} as any; for (const col of columns) { @@ -211,22 +213,12 @@ export default class Sample extends React.Component { } // generate PK rowData[pk] = grid.data.length + 1; + this.updatedRecsPK.push(rowData[pk]); grid.addRow(rowData); - addedData.push(rowData); } // scroll to last added row grid.navigateTo(grid.data.length - 1, 0, () => { - this.clearStyles(); - for (const data of addedData) { - const row = grid.getRowByKey(data[pk]); - if (row) { - const rowNative = this.getNative(row) as any; - if (rowNative) { - rowNative.style["font-style"] = "italic"; - rowNative.style.color = "gray"; - } - } - } + grid.cdr.detectChanges(); }); } public updateRecords(processedData: any[]) { @@ -238,7 +230,6 @@ export default class Sample extends React.Component { const columns = grid.visibleColumns; const cellIndex = grid.visibleColumns.indexOf(cell.column); let index = 0; - const updatedRecsPK: any[] = []; for (const curentDataRow of processedData) { const rowData = {} as any; const dataRec = grid.data[rowIndex + index]; @@ -258,36 +249,10 @@ export default class Sample extends React.Component { grid.addRow(rowData); continue; } + this.updatedRecsPK.push(rowPkValue); grid.updateRow(rowData, rowPkValue); - updatedRecsPK.push(rowPkValue); index++; } - - this.clearStyles(); - for (const pkVal of updatedRecsPK) { - const row = grid.getRowByKey(pkVal); - if (row) { - const rowNative = this.getNative(row) as any; - if (rowNative) { - rowNative.style["font-style"] = "italic"; - rowNative.style.color = "gray"; - } - } - } - } - - protected clearStyles() { - const rows = [...(document.getElementsByTagName("igx-grid-row") as any)]; - for (const rowNative of rows) { - rowNative.style["font-style"] = ""; - rowNative.style.color = ""; - } - } - - protected getNative(row: any) { - const rows = [...(document.getElementsByTagName("igx-grid-row") as any)]; - const dataInd = row.index.toString(); - return rows.find(x => (x.attributes as any)["data-rowindex"] .value === dataInd); } public processData(data: any) { @@ -308,6 +273,13 @@ export default class Sample extends React.Component { return pasteData; } + public webGridEditedRowClassesHandler = { + edited: (row: IgrRowType) => { + const grid = this.grid as any; + return this.updatedRecsPK.indexOf(row.data[grid.primaryKey]) !== -1; + } + }; + } // rendering above component in the React DOM diff --git a/samples/grids/grid/row-reorder/src/index.tsx b/samples/grids/grid/row-reorder/src/index.tsx index 27f51a4fb1..3372ba4dbf 100644 --- a/samples/grids/grid/row-reorder/src/index.tsx +++ b/samples/grids/grid/row-reorder/src/index.tsx @@ -103,6 +103,9 @@ export default class Sample extends React.Component { public webGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.grid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-grid-row")); diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css index 9259d94790..2a1297d0b9 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/src/index.css @@ -2,59 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #hierarchicalGrid1 { - - --ig-button-background: #292826; - --ig-button-foreground:#ffcd0f; - --ig-button-hover-foreground:#292826; - --ig-button-hover-background:#ffcd0f; - --ig-button-focus-foreground:#ffcd0f; - --ig-button-focus-background:#292826; - --ig-button-active-background:#ffcd0f; - --ig-button-active-foreground:#292826; - --ig-button-border-color:#ffcd0f; - --ig-button-hover-border-color:#ffcd0f; - --ig-button-focus-border-color:#ffcd0f; - --ig-button-active-border-color:#ffcd0f; - - --ig-button-group-item-background: #292826; - --ig-button-group-item-text-color: #ffcd0f; - --ig-button-group-item-border-color: #ffcd0f; - --ig-button-group-item-selected-background: #ffcd0f; - --ig-button-group-item-hover-background: #ffcd0f; - --ig-button-group-item-selected-hover-background: #ffcd0f; - --ig-button-group-item-disabled-border: #ffcd0f; - --ig-button-group-item-selected-border-color: #ffcd0f; - - --ig-input-group-idle-text-color: #ffcd0f; - --ig-input-group-focused-text-color: #ffcd0f; - --ig-input-group-filled-text-color: #ffcd0f; - --ig-input-group-idle-bottom-line-color: #ffe482; - --ig-input-group-focused-secondary-color: #ffcd0f; - - --ig-chip-background: #ffcd0f; - --ig-chip-text-color: #292826; - - --ig-drop-down-background-color: #292826; - --ig-drop-down-item-text-color: #ffcd0f; - --ig-drop-down-hover-item-background: #ffcd0f; - --ig-drop-down-hover-item-text-color: #292826; - --ig-drop-down-focused-item-background: #ffcd0f; - --ig-drop-down-focused-item-text-color: #292826; - --ig-drop-down-selected-item-background: #ffcd0f; - --ig-drop-down-selected-item-text-color: #292826; - --ig-drop-down-selected-focus-item-background: #ffcd0f; - --ig-drop-down-selected-focus-item-text-color: #292826; - --ig-drop-down-selected-hover-item-background: #ffcd0f; - --ig-drop-down-selected-hover-item-text-color: #292826; - - --ig-query-builder-header-foreground: #EDEDED; - --ig-query-builder-header-background: gray; - --ig-query-builder-background: #292826; - --ig-query-builder-foreground: #ffcd0f; -} - -* { - --background-or: red; - --filtering-row-background: #292826; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "White Clover Markets", + "ContactName": "Karl Jablonski", + "ContactTitle": "Owner", + "Address": "305 - 14th Ave. S. Suite 3B", + "City": "Seattle", + "Region": "WA", + "PostalCode": 98128, + "Country": "USA", + "Phone": "(206) 555-4112", + "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", + "ContactTitle": "Marketing Manager", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-moving-options/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx b/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx index 92e6431214..68b1a45a6f 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-moving-options/src/index.tsx @@ -184,9 +184,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx index af074f53c1..053b41a5fb 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-moving-styles/src/index.tsx @@ -184,9 +184,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "White Clover Markets", + "ContactName": "Karl Jablonski", + "ContactTitle": "Owner", + "Address": "305 - 14th Ave. S. Suite 3B", + "City": "Seattle", + "Region": "WA", + "PostalCode": 98128, + "Country": "USA", + "Phone": "(206) 555-4112", + "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", + "ContactTitle": "Marketing Manager", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx index 7737d35fff..53914024f3 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-options/src/index.tsx @@ -203,9 +203,9 @@ export default class Sample extends React.Component { public hierarchicalGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column)}>📌 +
+ {column.field} + this.toggleColumnPin(column)}>📌
); } diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "White Clover Markets", + "ContactName": "Karl Jablonski", + "ContactTitle": "Owner", + "Address": "305 - 14th Ave. S. Suite 3B", + "City": "Seattle", + "Region": "WA", + "PostalCode": 98128, + "Country": "USA", + "Phone": "(206) 555-4112", + "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", + "ContactTitle": "Marketing Manager", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "White Clover Markets", + "ContactName": "Karl Jablonski", + "ContactTitle": "Owner", + "Address": "305 - 14th Ave. S. Suite 3B", + "City": "Seattle", + "Region": "WA", + "PostalCode": 98128, + "Country": "USA", + "Phone": "(206) 555-4112", + "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", + "ContactTitle": "Marketing Manager", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json index 8c1cb2c4ac..956627e3f6 100644 --- a/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json +++ b/samples/grids/hierarchical-grid/column-pinning/src/HierarchicalCustomersData.json @@ -53,6 +53,112 @@ "TotalPrice": 220.25 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -101,267 +207,155 @@ "TotalPrice": 225.75 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Madrid", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0, - "Weight": 2.9, - "Length": 26.9, - "TotalPrice": 233.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16, - "Weight": 3.5, - "Length": 27.4, - "TotalPrice": 261.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16, - "Weight": 2.2, - "Length": 30.2, - "TotalPrice": 249.75 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06, - "Weight": 2.6, - "Length": 26.8, - "TotalPrice": 226.5 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06, - "Weight": 3.1, - "Length": 24.3, - "TotalPrice": 219.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0, - "Weight": 2.4, - "Length": 23.7, - "TotalPrice": 207 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -369,1393 +363,1191 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10258, + "OrderID": 10690, "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 - }, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, - "Discount": 0.25 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", - "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Lyon", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 7, - "UnitPrice": 24, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, + "OrderID": 11052, "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, + "OrderID": 10334, "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10273, + "OrderID": 10806, "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", - "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, - "Discount": 0.06 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, + "ProductID": 25, + "UnitPrice": 14, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, { "ProductID": 28, "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, - "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, + "OrderID": 10930, "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 21, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 67, - "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", - "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] @@ -1763,327 +1555,272 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", "Orders": [ { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 18000, - "ShipCountry": "UK", + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", - "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2091,1519 +1828,1223 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", "Orders": [ { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", - "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, - "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 - } + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10299, - "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", "Orders": [ { - "OrderID": 10304, - "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 5, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, - "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "ShipVia": 3, + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 53, "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 3, + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, + "OrderID": 10486, "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40301, - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30575, - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 2, + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", - "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80331, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, + "OrderID": 10863, "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 5, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 30, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, + "OrderID": 10976, "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -3611,1149 +3052,787 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 35, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, - "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, - "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10330, - "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 25, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { "ProductID": 18, "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, + "OrderID": 10402, "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, + "OrderID": 10595, "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, - "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, + "OrderID": 10667, "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10698, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", - "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 3, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, - "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, + "OrderID": 10836, "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4761,450 +3840,329 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 13, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, + "OrderID": 10979, "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 30, + "Quantity": 65, "Discount": 0 }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, { "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, - "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 16, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10360, + "OrderID": 10259, "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, "Discount": 0 } ] @@ -5212,815 +4170,636 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, "Country": "Germany", - "Phone": "0372-035188", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10362, - "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", - "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 50, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, "Discount": 0 }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", - "OrderDetails": [ { "ProductID": 69, "UnitPrice": 28.8, - "Quantity": 30, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 }, { "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, + "OrderID": 10833, "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 }, { - "ProductID": 74, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, + "Region": "RJ", + "PostalCode": 2389, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 15, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, + "OrderID": 10587, "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 39, - "UnitPrice": 14.4, + "UnitPrice": 18, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", - "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "UnitPrice": 21.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10379, + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10989, "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 1, - "Freight": 45.03, + "Freight": 34.76, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Lyon", @@ -6029,982 +4808,767 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 } ] } ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10380, + "OrderID": 10262, "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", - "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", - "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 44, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, - "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 15, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 + } + ] + }, + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, + "OrderID": 10988, "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", - "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, + "OrderID": 11000, "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", - "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10393, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, + "ProductID": 4, + "UnitPrice": 22, "Quantity": 25, "Discount": 0.25 }, { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, + "OrderID": 11077, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10396, - "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", - "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10397, - "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10399, - "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7012,1094 +5576,932 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 47000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", "Orders": [ { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 35, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 1, - "Freight": 12.51, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ { "ProductID": 71, "UnitPrice": 17.2, - "Quantity": 60, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 } ] }, { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 21, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 10, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 10000, - "ShipCountry": "Canada", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10955, "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, - "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] + }, + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] } ] }, { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 31.2, - "Quantity": 2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 49, + "UnitPrice": 16, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10418, - "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, + "OrderID": 10826, "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] @@ -8107,599 +6509,459 @@ ] }, { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 11000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", "Orders": [ { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", - "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 53, + "UnitPrice": 26.2, "Quantity": 50, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 46000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, + "OrderID": 10526, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, - "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 40000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 10000, - "ShipCountry": "Sweden", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 18, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 10, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 5, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 45, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8707,709 +6969,557 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 15.6, + "ProductID": 76, + "UnitPrice": 14.4, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, + "OrderID": 10342, "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, + "ProductID": 59, + "UnitPrice": 44, "Quantity": 30, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10560, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 21000, - "ShipCountry": "Sweden", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 - } + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, - "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 5.6, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, - "Discount": 0.2 + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 }, { "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, - "Discount": 0.1 + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, "Discount": 0.06 } ] @@ -9417,8638 +7527,2449 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 46000, - "ShipCountry": "UK", + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, - "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "WHITC", + "Company": "White Clover Markets", + "ContactName": "Karl Jablonski", + "ContactTitle": "Owner", + "Address": "305 - 14th Ave. S. Suite 3B", + "City": "Seattle", + "Region": "WA", + "PostalCode": 98128, + "Country": "USA", + "Phone": "(206) 555-4112", + "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 - }, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 40, "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, "Discount": 0.16 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 36, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 31000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10460, + "OrderID": 10596, "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ + "Discount": 0.16 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, - "Discount": 0 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, - "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10465, - "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10467, - "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10468, + "OrderID": 10723, "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", - "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 21.72, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", "ShipRegion": "WA", "ShipPostalCode": 98124, "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10470, - "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 33000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60471, - "ShipPostalCode": 37000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10476, - "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10479, - "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", - "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", - "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 33000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ - { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 16000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ - { - "OrderID": 10494, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", - "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", - "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 10517, - "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10521, - "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10523, - "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ - { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 33000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ - { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", - "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 10000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", - "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 3, - "Freight": 4.87, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 45000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, - "Discount": 0 - } - ] - }, - { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10541, - "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", - "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", - "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ - { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ - { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", - "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10546, - "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ - { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ - { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", - "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10554, - "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10557, - "EmployeeID": 9, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 96.72, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 20000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", - "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 15000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 24000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", - "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", - "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 34000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10570, - "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10572, - "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 25000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10575, - "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ - { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 44000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ - { - "OrderID": 10579, - "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", - "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10584, - "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ - { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 - }, + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, { "ProductID": 35, "UnitPrice": 18, - "Quantity": 4, - "Discount": 0 + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10590, + "OrderID": 10861, "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 47000, - "ShipCountry": "Canada", + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 } ] }, { - "OrderID": 10593, + "OrderID": 11066, "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 29, + "UnitPrice": 99, "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, + "OrderID": 10385, "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 3, - "Freight": 29.98, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 26, + "UnitPrice": 24.9, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", "Orders": [ { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, + "OrderID": 10285, "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 12000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 43000, - "ShipCountry": "Canada", + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10451, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 28, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", - "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, { "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, - "Discount": 0 + "Quantity": 55, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10614, + "OrderID": 10694, "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", - "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10618, + "OrderID": 10788, "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 70, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, "Discount": 0 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", - "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", - "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90304, - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 21, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 }, { "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, + "OrderID": 10784, "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 32, + "UnitPrice": 32, "Quantity": 20, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", - "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", "Orders": [ { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 }, { "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10635, - "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, + "OrderID": 10518, "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, - "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", - "ShipVia": 1, - "Freight": 23.55, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] @@ -18056,182 +9977,158 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", "Orders": [ { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10644, + "OrderID": 10699, "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.1 - }, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10645, + "OrderID": 10945, "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] @@ -18239,376 +10136,273 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", "Orders": [ { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, - "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ - { - "OrderID": 10648, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", - "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 43000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, - "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 2, - "Discount": 0.25 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 30, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, "Discount": 0.1 + } + ] + }, + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { "OrderID": 10654, "EmployeeID": 5, @@ -18642,838 +10436,738 @@ "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { "ProductID": 40, "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ + "Discount": 0.25 + }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 1.28, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10666, + "OrderID": 10497, "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", - "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 25, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.1 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -19481,275 +11175,177 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", "Orders": [ { - "OrderID": 10673, - "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, + "OrderID": 10282, "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60688, - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, "Discount": 0 }, { "ProductID": 53, - "UnitPrice": 32.8, + "UnitPrice": 26.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, - "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 120, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -19757,1581 +11353,1417 @@ ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + }, + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10499, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10780, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", - "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, - "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 3, + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 24000, - "ShipCountry": "Sweden", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + }, + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", "Orders": [ { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", - "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 40, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, + "OrderID": 10299, "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", - "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10694, + "OrderID": 10481, "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, "Quantity": 25, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, - "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, - "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", "Orders": [ { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 12, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 34, - "UnitPrice": 14, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 12, - "Discount": 0.2 + "Discount": 0 + } + ] + }, + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 24, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 8, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 29000, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + }, + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, - "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 52.41, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 120, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, + "OrderID": 10947, "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 30, "Discount": 0 } @@ -21340,191 +12772,158 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 167.05, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 3, - "Freight": 24.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 10, + "Quantity": 4, "Discount": 0 } ] @@ -21532,900 +12931,820 @@ ] }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10717, + "OrderID": 10292, "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, "UnitPrice": 10, - "Quantity": 32, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, - "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, - "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", - "ShipVia": 1, - "Freight": 74.58, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 }, { "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 45, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10724, + "OrderID": 10380, "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", - "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, - "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, + "OrderID": 10712, "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, "Discount": 0 }, { "ProductID": 30, "UnitPrice": 25.89, - "Quantity": 15, + "Quantity": 36, "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 44.1, + "Freight": 81.73, "ShipName": "Hungry Owl All-Night Grocers", "ShipAddress": "8 Johnstown Road", "ShipCity": "Cork", @@ -22433,315 +13752,351 @@ "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, + "OrderID": 10312, "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de l'Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", - "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de l'Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10740, - "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", - "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.2 + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 25000, - "ShipCountry": "Canada", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10668, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 48000, - "ShipCountry": "UK", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, "Discount": 0.06 } ] @@ -22749,394 +14104,328 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 24, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 9, "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", - "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, - "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40198, - "ShipPostalCode": 33000, - "ShipCountry": "UK", + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10751, + "OrderID": 10948, "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 }, { - "ProductID": 73, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, "UnitPrice": 15, - "Quantity": 15, + "Quantity": 4, "Discount": 0 } ] @@ -23144,721 +14433,563 @@ ] }, { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10752, - "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, - "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 3, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10755, - "EmployeeID": 4, - "OrderDate": "1997-11-26T00:00:00", - "RequiredDate": "1997-12-24T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", "ShipVia": 2, - "Freight": 16.71, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 58, + "UnitPrice": 13.25, "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 14, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, + "OrderID": 10706, "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", - "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 24, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10758, + "OrderID": 10855, "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 38000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, - "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 12000, - "ShipCountry": "Belgium", + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, + "CustomerID": "LONEP", + "Company": "Lonesome Pine Restaurant", + "ContactName": "Fran Wilson", + "ContactTitle": "Sales Manager", + "Address": "89 Chiaroscuro Rd.", + "City": "Portland", + "Region": "OR", + "PostalCode": 97219, "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "Phone": "(503) 555-9573", + "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10867, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10766, + "OrderID": 11018, "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, "Discount": 0 } ] @@ -23866,108 +14997,137 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10769, + "OrderID": 10759, "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -23975,115 +15135,123 @@ ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", + "ContactTitle": "Marketing Manager", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10770, + "OrderID": 10310, "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + }, { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] @@ -24091,132 +15259,131 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10773, + "OrderID": 10311, "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 69, + "UnitPrice": 28.8, "Quantity": 7, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + }, { - "OrderID": 10775, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 67, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] @@ -24224,1031 +15391,791 @@ ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10778, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 13000, - "ShipCountry": "Sweden", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10783, + "OrderID": 10749, "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 52, + "UnitPrice": 5.6, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 18000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10795, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10796, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 24, - "Discount": 0.2 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50129, - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { "OrderID": 10799, "EmployeeID": 9, @@ -25282,723 +16209,469 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 263.5, "Quantity": 30, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 60, - "Discount": 0.25 + "Discount": 0.16 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 20000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10811, + "OrderID": 10452, "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 15, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 35, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -26006,2194 +16679,1895 @@ "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, { "ProductID": 33, "UnitPrice": 2.5, - "Quantity": 16, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + }, + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 20, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ + }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ + }, { "ProductID": 56, "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 40, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 12, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10825, + "OrderID": 10713, "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 12, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 35, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20759, - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 + "Quantity": 28, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 24, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 + "Quantity": 56, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10835, + "OrderID": 11064, "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, "Discount": 0 }, { "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 + } + ] + }, + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 65, + "UnitPrice": 16.8, "Quantity": 40, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10838, + "OrderID": 10352, "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ + }, { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 + } + ] + }, + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 10842, + "OrderID": 10664, "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10847, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 71, + "UnitPrice": 21.5, "Quantity": 30, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10851, + "OrderID": 10730, "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, + "OrderID": 10871, "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", - "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 24, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 43000, - "ShipCountry": "Sweden", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10858, + "OrderID": 10339, "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10376, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", - "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ { "ProductID": 62, "UnitPrice": 49.3, @@ -28201,132 +18575,195 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, + "OrderID": 10565, "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, + "OrderID": 10590, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10864, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28334,372 +18771,367 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10865, - "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, + "OrderID": 10397, "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, - "Discount": 0.25 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } ] }, { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 34000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 50, "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, { "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, - "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ { "ProductID": 55, "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.25 }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 - }, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, "Discount": 0.06 } ] @@ -28707,292 +19139,246 @@ ] }, { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10873, + "OrderID": 10347, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, - "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10876, + "OrderID": 10512, "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, { "ProductID": 46, "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + }, { - "OrderID": 10879, - "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 12, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] @@ -29000,1554 +19386,1463 @@ ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 26000, - "ShipCountry": "Sweden", + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 10, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + }, { - "OrderID": 10882, + "OrderID": 10454, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 49, - "UnitPrice": 20, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, - "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 29000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 33000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, + "OrderID": 10547, "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] }, { - "OrderID": 10914, - "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 } ] @@ -30555,183 +20850,169 @@ ] }, { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10917, - "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 42000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, - "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30739,316 +21020,267 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", "City": "London", - "PostalCode": 34000, + "PostalCode": 20000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10921, + "OrderID": 10400, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, { "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "UnitPrice": 14.4, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, - "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { "ProductID": 43, "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 25, - "Discount": 0.16 + "Discount": 0.25 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10926, - "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31056,329 +21288,226 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40216, - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -31386,163 +21515,141 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] @@ -31550,383 +21657,323 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, - "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 45000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -31960,645 +22007,417 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 13000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, - "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, + "ProductID": 21, + "UnitPrice": 8, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 60, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ - { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0.06 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 48, + "UnitPrice": 12.75, "Quantity": 24, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 25000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10955, - "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 47000, - "ShipCountry": "Sweden", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ - { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", - "OrderDetails": [ + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10957, + "OrderID": 10786, "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 8, + "UnitPrice": 40, "Quantity": 30, - "Discount": 0 + "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, + "OrderID": 10868, "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 4876, + "ShipPostalCode": 5487, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { "OrderID": 10961, "EmployeeID": 8, @@ -32615,158 +22434,271 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10962, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, "Quantity": 2, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10964, - "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, "Discount": 0 } ] @@ -32774,174 +22706,153 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, - "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 1, + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 73, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, "Discount": 0 } ] @@ -32949,222 +22860,205 @@ ] }, { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10969, + "OrderID": 10387, "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, - "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne d'abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de l'Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10972, - "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, "Discount": 0 } ] }, { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne d'abondance", - "ShipAddress": "67, avenue de l'Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, - "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33179,339 +23073,314 @@ "Address": "23 Tsawassen Blvd.", "City": "Tsawassen", "Region": "BC", - "PostalCode": 13000, + "PostalCode": 26000, "Country": "Canada", "Phone": "(604) 555-4729", "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 40000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, + "ProductID": 10, + "UnitPrice": 24.8, "Quantity": 16, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 31000, - "ShipCountry": "Belgium", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ - { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10981, + "OrderID": 10975, "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33540,81 +23409,83 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] @@ -33622,535 +23493,427 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, - "Discount": 0.1 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, - "Discount": 0.1 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 30000, - "ShipCountry": "UK", + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 20, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, + "OrderID": 10697, "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, "UnitPrice": 19, "Quantity": 50, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 36000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ - { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34158,580 +23921,519 @@ ] }, { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10997, + "OrderID": 10408, "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 + } + ] + }, + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 45000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 14000, - "ShipCountry": "Sweden", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 13, "UnitPrice": 6, - "Quantity": 56, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 20000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11004, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + }, + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, "Discount": 0 } ] @@ -34739,453 +24441,384 @@ ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 9, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, + "OrderID": 10709, "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 11013, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", + "Address": "Berkeley Gardens 12 Brewery", "City": "London", - "PostalCode": 49000, + "PostalCode": 23000, "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35205,12 +24838,13 @@ "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11019, - "EmployeeID": 6, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShipVia": 3, - "Freight": 3.17, + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, "ShipName": "Rancho grande", "ShipAddress": "Av. del Libertador 900", "ShipCity": "Buenos Aires", @@ -35218,195 +24852,138 @@ "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Orders": [ + }, { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, { "ProductID": 20, "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "B's Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "B's Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, "Discount": 0 } ] @@ -35414,53 +24991,60 @@ ] }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35468,311 +25052,322 @@ ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 27000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", "ShipRegion": "BC", - "ShipPostalCode": 14000, + "ShipPostalCode": 41000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, "Country": "Germany", - "Phone": "0555-09876", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, + "OrderID": 10509, "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -35780,140 +25375,97 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 }, { "ProductID": 69, "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 6, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -35921,233 +25473,174 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11035, - "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 35, "UnitPrice": 18, - "Quantity": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11036, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 43, + "UnitPrice": 46, "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, + "ProductID": 73, "UnitPrice": 15, - "Quantity": 4, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 6000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 6000, - "ShipCountry": "Belgium", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Lyon", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36167,12 +25660,13 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36181,582 +25675,508 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ - { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", - "OrderDetails": [ + }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 15000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, - "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 46000, - "ShipCountry": "Canada", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 42000, - "ShipCountry": "UK", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 24000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 46000, - "Country": "Sweden", - "Phone": "0695-34 67 21", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison d'Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, - "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison d'Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, { "ProductID": 43, "UnitPrice": 46, "Quantity": 30, - "Discount": 0.2 - }, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -36764,139 +26184,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 11000, - "ShipCountry": "UK", + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 3, + "Quantity": 6, "Discount": 0 } ] @@ -36904,451 +26304,483 @@ ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 21, "Discount": 0 + } + ] + }, + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", + "OrderDetails": [ { "ProductID": 61, "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Orders": [ + }, { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Lyon", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11060, + "OrderID": 10615, "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10873, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 11063, + "OrderID": 10879, "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, + "OrderID": 10910, "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", + "ContactTitle": "Marketing Assistant", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 34, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, "UnitPrice": 14, - "Quantity": 35, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37356,272 +26788,279 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10952, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 15, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, + "OrderID": 10971, "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, "Discount": 0 } ] @@ -37629,308 +27068,223 @@ ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 16, "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Orders": [ + }, { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app'", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app'", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/column-selection-group/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/layout-display-density/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json b/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json index 75c7bc037d..43b2853953 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/src/HierarchicalCustomers.json @@ -44,6 +44,112 @@ "Discount": 0 } ] + }, + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] } ] }, @@ -86,251 +192,155 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10250, - "EmployeeID": 4, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-12T00:00:00", + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", "ShipVia": 2, - "Freight": 65.83, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 57, + "UnitPrice": 15.6, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10251, - "EmployeeID": 3, - "OrderDate": "1996-07-08T00:00:00", - "RequiredDate": "1996-08-05T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", "ShipVia": 1, - "Freight": 41.34, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 44000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10252, - "EmployeeID": 4, - "OrderDate": "1996-07-09T00:00:00", - "RequiredDate": "1996-08-06T00:00:00", - "ShippedDate": "1996-07-11T00:00:00", + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 51.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 22000, - "ShipCountry": "Belgium", + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 40, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Fax": "0452-076546", - "Orders": [ + }, { - "OrderID": 10254, - "EmployeeID": 5, - "OrderDate": "1996-07-11T00:00:00", - "RequiredDate": "1996-08-08T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 22.98, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0.16 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10255, - "EmployeeID": 9, - "OrderDate": "1996-07-12T00:00:00", - "RequiredDate": "1996-08-09T00:00:00", - "ShippedDate": "1996-07-15T00:00:00", - "ShipVia": 3, - "Freight": 148.33, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, "Discount": 0 } ] @@ -338,2105 +348,1447 @@ ] }, { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", "Orders": [ { - "OrderID": 10256, - "EmployeeID": 3, - "OrderDate": "1996-07-15T00:00:00", - "RequiredDate": "1996-08-12T00:00:00", - "ShippedDate": "1996-07-17T00:00:00", + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", "ShipVia": 2, - "Freight": 13.97, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10257, - "EmployeeID": 4, - "OrderDate": "1996-07-16T00:00:00", - "RequiredDate": "1996-08-13T00:00:00", - "ShippedDate": "1996-07-22T00:00:00", - "ShipVia": 3, - "Freight": 81.91, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10258, - "EmployeeID": 1, - "OrderDate": "1996-07-17T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-07-23T00:00:00", + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", "ShipVia": 1, - "Freight": 140.51, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 }, { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 65, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "CENTC", - "Company": "Centro comercial Moctezuma", - "ContactName": "Francisco Chang", - "ContactTitle": "Marketing Manager", - "Address": "Sierras de Granada 9993", - "City": "México D.F.", - "PostalCode": 5022, - "Country": "Mexico", - "Phone": "(5) 555-3392", - "Fax": "(5) 555-7293", - "Orders": [ + }, { - "OrderID": 10259, + "OrderID": 10645, "EmployeeID": 4, - "OrderDate": "1996-07-18T00:00:00", - "RequiredDate": "1996-08-15T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 3.25, - "ShipName": "Centro comercial Moctezuma", - "ShipAddress": "Sierras de Granada 9993", - "ShipCity": "México D.F.", - "ShipPostalCode": 5022, - "ShipCountry": "Mexico", + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 1, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10260, - "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-29T00:00:00", + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", "ShipVia": 1, - "Freight": 55.09, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 16, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0.25 - }, + } + ] + }, + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 21, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10261, + "OrderID": 10783, "EmployeeID": 4, - "OrderDate": "1996-07-19T00:00:00", - "RequiredDate": "1996-08-16T00:00:00", - "ShippedDate": "1996-07-30T00:00:00", + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", "ShipVia": 2, - "Freight": 3.05, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", - "ShipPostalCode": 2389, + "ShipPostalCode": 5454, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10262, - "EmployeeID": 8, - "OrderDate": "1996-07-22T00:00:00", - "RequiredDate": "1996-08-19T00:00:00", - "ShippedDate": "1996-07-25T00:00:00", - "ShipVia": 3, - "Freight": 48.29, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 15, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 2, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10263, - "EmployeeID": 9, - "OrderDate": "1996-07-23T00:00:00", - "RequiredDate": "1996-08-20T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 3, - "Freight": 146.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 60, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10264, - "EmployeeID": 6, - "OrderDate": "1996-07-24T00:00:00", - "RequiredDate": "1996-08-21T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", "ShipVia": 3, - "Freight": 3.67, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 27000, - "ShipCountry": "Sweden", + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10265, - "EmployeeID": 2, - "OrderDate": "1996-07-25T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 1, - "Freight": 55.28, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10266, - "EmployeeID": 3, - "OrderDate": "1996-07-26T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-07-31T00:00:00", - "ShipVia": 3, - "Freight": 25.73, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10267, - "EmployeeID": 4, - "OrderDate": "1996-07-29T00:00:00", - "RequiredDate": "1996-08-26T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", - "ShipVia": 1, - "Freight": 208.58, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ + }, { - "OrderID": 10268, - "EmployeeID": 8, - "OrderDate": "1996-07-30T00:00:00", - "RequiredDate": "1996-08-27T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 3, - "Freight": 66.29, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 10, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 4, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", "Orders": [ { - "OrderID": 10269, - "EmployeeID": 5, - "OrderDate": "1996-07-31T00:00:00", - "RequiredDate": "1996-08-14T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", "ShipVia": 1, - "Freight": 4.56, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10270, - "EmployeeID": 1, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-02T00:00:00", - "ShipVia": 1, - "Freight": 136.54, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 30, - "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 25, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10271, - "EmployeeID": 6, - "OrderDate": "1996-08-01T00:00:00", - "RequiredDate": "1996-08-29T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", "ShipVia": 2, - "Freight": 4.54, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 24, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10272, - "EmployeeID": 6, - "OrderDate": "1996-08-02T00:00:00", - "RequiredDate": "1996-08-30T00:00:00", - "ShippedDate": "1996-08-06T00:00:00", + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", "ShipVia": 2, - "Freight": 98.03, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 6, - "Discount": 0 + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 }, { "ProductID": 72, "UnitPrice": 27.8, - "Quantity": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10273, - "EmployeeID": 3, - "OrderDate": "1996-08-05T00:00:00", - "RequiredDate": "1996-09-02T00:00:00", - "ShippedDate": "1996-08-12T00:00:00", + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", "ShipVia": 3, - "Freight": 76.07, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { "ProductID": 10, "UnitPrice": 24.8, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 33, - "UnitPrice": 2, "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 60, - "Discount": 0.06 - }, - { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 33, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10274, - "EmployeeID": 6, - "OrderDate": "1996-08-06T00:00:00", - "RequiredDate": "1996-09-03T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 1, - "Freight": 6.01, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 20, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10275, - "EmployeeID": 1, - "OrderDate": "1996-08-07T00:00:00", - "RequiredDate": "1996-09-04T00:00:00", - "ShippedDate": "1996-08-09T00:00:00", - "ShipVia": 1, - "Freight": 26.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 6, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10276, - "EmployeeID": 8, - "OrderDate": "1996-08-08T00:00:00", - "RequiredDate": "1996-08-22T00:00:00", - "ShippedDate": "1996-08-14T00:00:00", - "ShipVia": 3, - "Freight": 13.84, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 15, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Fax": "0342-023177", - "Orders": [ + }, { - "OrderID": 10277, - "EmployeeID": 2, - "OrderDate": "1996-08-09T00:00:00", - "RequiredDate": "1996-09-06T00:00:00", - "ShippedDate": "1996-08-13T00:00:00", + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 3, - "Freight": 125.77, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 14000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10278, - "EmployeeID": 8, - "OrderDate": "1996-08-12T00:00:00", - "RequiredDate": "1996-09-09T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", "ShipVia": 2, - "Freight": 92.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 16, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 15, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 8, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10279, - "EmployeeID": 8, - "OrderDate": "1996-08-13T00:00:00", - "RequiredDate": "1996-09-10T00:00:00", - "ShippedDate": "1996-08-16T00:00:00", - "ShipVia": 2, - "Freight": 25.83, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 27000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 44000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", "Orders": [ { - "OrderID": 10280, - "EmployeeID": 2, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-09-11T00:00:00", - "ShippedDate": "1996-09-12T00:00:00", - "ShipVia": 1, - "Freight": 8.98, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 32000, - "ShipCountry": "Sweden", + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 22000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 12, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10281, + "OrderID": 10302, "EmployeeID": 4, - "OrderDate": "1996-08-14T00:00:00", - "RequiredDate": "1996-08-28T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 2.94, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 20000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 1, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 6, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10282, - "EmployeeID": 4, - "OrderDate": "1996-08-15T00:00:00", - "RequiredDate": "1996-09-12T00:00:00", - "ShippedDate": "1996-08-21T00:00:00", - "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 16000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 6, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10283, - "EmployeeID": 3, - "OrderDate": "1996-08-16T00:00:00", - "RequiredDate": "1996-09-13T00:00:00", - "ShippedDate": "1996-08-23T00:00:00", - "ShipVia": 3, - "Freight": 84.81, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 15, - "UnitPrice": 12.4, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 3, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10284, - "EmployeeID": 4, - "OrderDate": "1996-08-19T00:00:00", - "RequiredDate": "1996-09-16T00:00:00", - "ShippedDate": "1996-08-27T00:00:00", - "ShipVia": 1, - "Freight": 76.56, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 44, - "UnitPrice": 15.5, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 21, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 67, + "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 5, - "Discount": 0.25 + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10285, - "EmployeeID": 1, - "OrderDate": "1996-08-20T00:00:00", - "RequiredDate": "1996-09-17T00:00:00", - "ShippedDate": "1996-08-26T00:00:00", - "ShipVia": 2, - "Freight": 76.83, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 36, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 } ] }, { - "OrderID": 10286, - "EmployeeID": 8, - "OrderDate": "1996-08-21T00:00:00", - "RequiredDate": "1996-09-18T00:00:00", - "ShippedDate": "1996-08-30T00:00:00", + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 3, - "Freight": 229.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 100, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10287, - "EmployeeID": 8, - "OrderDate": "1996-08-22T00:00:00", - "RequiredDate": "1996-09-19T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", - "ShipVia": 3, - "Freight": 12.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 27000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10288, - "EmployeeID": 4, - "OrderDate": "1996-08-23T00:00:00", - "RequiredDate": "1996-09-20T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 7.45, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10289, - "EmployeeID": 7, - "OrderDate": "1996-08-26T00:00:00", - "RequiredDate": "1996-09-23T00:00:00", - "ShippedDate": "1996-08-28T00:00:00", + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 3, - "Freight": 22.77, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 40000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, "Quantity": 30, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 9, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10290, - "EmployeeID": 8, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-03T00:00:00", - "ShipVia": 1, - "Freight": 79.7, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 17000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 15, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10291, - "EmployeeID": 6, - "OrderDate": "1996-08-27T00:00:00", - "RequiredDate": "1996-09-24T00:00:00", - "ShippedDate": "1996-09-04T00:00:00", + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 2, - "Freight": 6.4, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 44000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 } ] } ] }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10292, - "EmployeeID": 1, - "OrderDate": "1996-08-28T00:00:00", - "RequiredDate": "1996-09-25T00:00:00", - "ShippedDate": "1996-09-02T00:00:00", - "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Fax": "0452-076546", "Orders": [ { - "OrderID": 10293, - "EmployeeID": 1, - "OrderDate": "1996-08-29T00:00:00", - "RequiredDate": "1996-09-26T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 3, - "Freight": 21.18, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 12, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 5, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10294, - "EmployeeID": 4, - "OrderDate": "1996-08-30T00:00:00", - "RequiredDate": "1996-09-27T00:00:00", - "ShippedDate": "1996-09-05T00:00:00", + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", "ShipVia": 2, - "Freight": 147.26, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 14.4, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, "Quantity": 15, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 21, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ - { - "OrderID": 10295, - "EmployeeID": 2, - "OrderDate": "1996-09-02T00:00:00", - "RequiredDate": "1996-09-30T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 1.15, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10296, + "OrderID": 10519, "EmployeeID": 6, - "OrderDate": "1996-09-03T00:00:00", - "RequiredDate": "1996-10-01T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 1, - "Freight": 0.12, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10297, - "EmployeeID": 5, - "OrderDate": "1996-09-04T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-10T00:00:00", - "ShipVia": 2, - "Freight": 5.74, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10298, - "EmployeeID": 6, - "OrderDate": "1996-09-05T00:00:00", - "RequiredDate": "1996-10-03T00:00:00", - "ShippedDate": "1996-09-11T00:00:00", - "ShipVia": 2, - "Freight": 168.22, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 15, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10299, + "OrderID": 10966, "EmployeeID": 4, - "OrderDate": "1996-09-06T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-13T00:00:00", - "ShipVia": 2, - "Freight": 29.76, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10300, - "EmployeeID": 2, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", - "ShipVia": 2, - "Freight": 17.68, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10301, - "EmployeeID": 8, - "OrderDate": "1996-09-09T00:00:00", - "RequiredDate": "1996-10-07T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", "ShipVia": 2, - "Freight": 45.08, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 } ] @@ -2444,1691 +1796,1226 @@ ] }, { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 27000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Fax": "0897-034215", "Orders": [ { - "OrderID": 10302, - "EmployeeID": 4, - "OrderDate": "1996-09-10T00:00:00", - "RequiredDate": "1996-10-08T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 20000, - "ShipCountry": "Belgium", + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 28, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10303, - "EmployeeID": 7, - "OrderDate": "1996-09-11T00:00:00", - "RequiredDate": "1996-10-09T00:00:00", - "ShippedDate": "1996-09-18T00:00:00", + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", "ShipVia": 2, - "Freight": 107.83, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10304, + "OrderID": 10537, "EmployeeID": 1, - "OrderDate": "1996-09-12T00:00:00", - "RequiredDate": "1996-10-10T00:00:00", - "ShippedDate": "1996-09-17T00:00:00", - "ShipVia": 2, - "Freight": 63.79, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10305, - "EmployeeID": 8, - "OrderDate": "1996-09-13T00:00:00", - "RequiredDate": "1996-10-11T00:00:00", - "ShippedDate": "1996-10-09T00:00:00", - "ShipVia": 3, - "Freight": 257.62, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", - "Orders": [ + }, { - "OrderID": 10306, - "EmployeeID": 1, - "OrderDate": "1996-09-16T00:00:00", - "RequiredDate": "1996-10-14T00:00:00", - "ShippedDate": "1996-09-23T00:00:00", - "ShipVia": 3, - "Freight": 7.56, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 5, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10307, - "EmployeeID": 2, - "OrderDate": "1996-09-17T00:00:00", - "RequiredDate": "1996-10-15T00:00:00", - "ShippedDate": "1996-09-25T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 3, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ - { - "OrderID": 10308, - "EmployeeID": 7, - "OrderDate": "1996-09-18T00:00:00", - "RequiredDate": "1996-10-16T00:00:00", - "ShippedDate": "1996-09-24T00:00:00", - "ShipVia": 3, - "Freight": 1.61, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 1, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 5, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10309, + "OrderID": 10758, "EmployeeID": 3, - "OrderDate": "1996-09-19T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", - "ShipVia": 1, - "Freight": 47.3, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 20, "Discount": 0 }, { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 20, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 3, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10310, - "EmployeeID": 8, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-18T00:00:00", - "ShippedDate": "1996-09-27T00:00:00", + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 17.52, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10311, - "EmployeeID": 1, - "OrderDate": "1996-09-20T00:00:00", - "RequiredDate": "1996-10-04T00:00:00", - "ShippedDate": "1996-09-26T00:00:00", - "ShipVia": 3, - "Freight": 24.69, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 11.2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 6, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10312, - "EmployeeID": 2, - "OrderDate": "1996-09-23T00:00:00", - "RequiredDate": "1996-10-21T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", - "ShipVia": 2, - "Freight": 40.26, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 4, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 24, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-05-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 20, - "Discount": 0 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Fax": "(14) 555-8123", "Orders": [ { - "OrderID": 10313, - "EmployeeID": 2, - "OrderDate": "1996-09-24T00:00:00", - "RequiredDate": "1996-10-22T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", "ShipVia": 2, - "Freight": 1.96, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10314, - "EmployeeID": 1, - "OrderDate": "1996-09-25T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", - "ShipVia": 2, - "Freight": 74.16, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 40, + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 25, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 26000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10315, - "EmployeeID": 4, - "OrderDate": "1996-09-26T00:00:00", - "RequiredDate": "1996-10-24T00:00:00", - "ShippedDate": "1996-10-03T00:00:00", + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", "ShipVia": 2, - "Freight": 41.76, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 80379, - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 14, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "Quantity": 21, + "Discount": 0.1 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10316, - "EmployeeID": 1, - "OrderDate": "1996-09-27T00:00:00", - "RequiredDate": "1996-10-25T00:00:00", - "ShippedDate": "1996-10-08T00:00:00", - "ShipVia": 3, - "Freight": 150.15, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10317, - "EmployeeID": 6, - "OrderDate": "1996-09-30T00:00:00", - "RequiredDate": "1996-10-28T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 1, - "Freight": 12.69, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 52, + "UnitPrice": 7, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10318, - "EmployeeID": 8, - "OrderDate": "1996-10-01T00:00:00", - "RequiredDate": "1996-10-29T00:00:00", - "ShippedDate": "1996-10-04T00:00:00", + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 2, - "Freight": 4.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30676, - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10319, - "EmployeeID": 7, - "OrderDate": "1996-10-02T00:00:00", - "RequiredDate": "1996-10-30T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 64.5, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 8, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 30, - "Discount": 0 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 } ] } ] }, { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", + "CustomerID": "HILAA", + "Company": "HILARION-Abastos", + "ContactName": "Carlos Hernández", + "ContactTitle": "Sales Representative", + "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", + "City": "San Cristóbal", + "Region": "Táchira", + "PostalCode": 5022, + "Country": "Venezuela", + "Phone": "(5) 555-1340", + "Fax": "(5) 555-1948", "Orders": [ { - "OrderID": 10320, - "EmployeeID": 5, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-17T00:00:00", - "ShippedDate": "1996-10-18T00:00:00", + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", "ShipVia": 3, - "Freight": 34.57, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 81.91, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10321, - "EmployeeID": 3, - "OrderDate": "1996-10-03T00:00:00", - "RequiredDate": "1996-10-31T00:00:00", - "ShippedDate": "1996-10-11T00:00:00", - "ShipVia": 2, - "Freight": 3.43, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 20137, - "ShipPostalCode": 41000, - "ShipCountry": "UK", + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 1, + "Freight": 184.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10322, - "EmployeeID": 7, - "OrderDate": "1996-10-04T00:00:00", - "RequiredDate": "1996-11-01T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 3, - "Freight": 0.4, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 4.41, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10323, - "EmployeeID": 4, - "OrderDate": "1996-10-07T00:00:00", - "RequiredDate": "1996-11-04T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 1, - "Freight": 4.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 30.53, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 12.4, + "ProductID": 11, + "UnitPrice": 16.8, "Quantity": 5, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 4, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 4, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10324, - "EmployeeID": 9, - "OrderDate": "1996-10-08T00:00:00", - "RequiredDate": "1996-11-05T00:00:00", - "ShippedDate": "1996-10-10T00:00:00", - "ShipVia": 1, - "Freight": 214.27, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "ShipVia": 2, + "Freight": 210.19, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 68, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10325, - "EmployeeID": 1, - "OrderDate": "1996-10-09T00:00:00", - "RequiredDate": "1996-10-23T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 3, - "Freight": 64.86, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 2, + "Freight": 29.75, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 20, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10326, - "EmployeeID": 4, - "OrderDate": "1996-10-10T00:00:00", - "RequiredDate": "1996-11-07T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", - "ShipVia": 2, - "Freight": 77.92, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 1, + "Freight": 83.22, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 50, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10327, - "EmployeeID": 2, - "OrderDate": "1996-10-11T00:00:00", - "RequiredDate": "1996-11-08T00:00:00", - "ShippedDate": "1996-10-14T00:00:00", + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", "ShipVia": 1, - "Freight": 63.36, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", + "Freight": 58.3, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10328, + "OrderID": 10613, "EmployeeID": 4, - "OrderDate": "1996-10-14T00:00:00", - "RequiredDate": "1996-11-11T00:00:00", - "ShippedDate": "1996-10-17T00:00:00", - "ShipVia": 3, - "Freight": 87.03, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 8.11, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 40, "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10329, + "OrderID": 10641, "EmployeeID": 4, - "OrderDate": "1996-10-15T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-10-23T00:00:00", + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", "ShipVia": 2, - "Freight": 191.67, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 179.61, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, - "Discount": 0.06 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + }, + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 3.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 12, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + }, { - "OrderID": 10330, + "OrderID": 10796, "EmployeeID": 3, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", "ShipVia": 1, - "Freight": 12.75, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, + "Freight": 26.52, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, "ShipCountry": "Venezuela", "OrderDetails": [ { "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 50, - "Discount": 0.16 + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10331, - "EmployeeID": 9, - "OrderDate": "1996-10-16T00:00:00", - "RequiredDate": "1996-11-27T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 1, - "Freight": 10.19, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 20000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10332, - "EmployeeID": 3, - "OrderDate": "1996-10-17T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-10-21T00:00:00", - "ShipVia": 2, - "Freight": 52.84, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 40, - "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 16, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10333, - "EmployeeID": 5, - "OrderDate": "1996-10-18T00:00:00", - "RequiredDate": "1996-11-15T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 3, - "Freight": 0.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 30.26, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10334, - "EmployeeID": 8, - "OrderDate": "1996-10-21T00:00:00", - "RequiredDate": "1996-11-18T00:00:00", - "ShippedDate": "1996-10-28T00:00:00", - "ShipVia": 2, - "Freight": 8.56, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "ShipVia": 1, + "Freight": 62.09, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10335, - "EmployeeID": 7, - "OrderDate": "1996-10-22T00:00:00", - "RequiredDate": "1996-11-19T00:00:00", - "ShippedDate": "1996-10-24T00:00:00", - "ShipVia": 2, - "Freight": 42.11, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 105.36, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 7, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 25.6, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 2.08, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 48, - "Discount": 0.2 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10336, - "EmployeeID": 7, - "OrderDate": "1996-10-23T00:00:00", - "RequiredDate": "1996-11-20T00:00:00", - "ShippedDate": "1996-10-25T00:00:00", - "ShipVia": 2, - "Freight": 15.51, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 1, + "Freight": 37.97, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10337, - "EmployeeID": 4, - "OrderDate": "1996-10-24T00:00:00", - "RequiredDate": "1996-11-21T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 108.26, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 120.92, + "ShipName": "HILARION-Abastos", + "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", + "ShipCity": "San Cristóbal", + "ShipRegion": "Táchira", + "ShipPostalCode": 5022, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 24, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 20, "Discount": 0 }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] @@ -4136,625 +3023,475 @@ ] }, { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", "Orders": [ { - "OrderID": 10338, - "EmployeeID": 4, - "OrderDate": "1996-10-25T00:00:00", - "RequiredDate": "1996-11-22T00:00:00", - "ShippedDate": "1996-10-29T00:00:00", - "ShipVia": 3, - "Freight": 84.21, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 20, - "Discount": 0 + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 15, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 40000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10339, - "EmployeeID": 2, - "OrderDate": "1996-10-28T00:00:00", - "RequiredDate": "1996-11-25T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 15.66, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 10, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 28, - "Discount": 0 + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10340, + "OrderID": 10351, "EmployeeID": 1, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 166.31, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 20, "Discount": 0.06 }, { "ProductID": 41, "UnitPrice": 7.7, - "Quantity": 12, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 40, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10341, - "EmployeeID": 7, - "OrderDate": "1996-10-29T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", - "ShipVia": 3, - "Freight": 26.78, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 8, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10342, + "OrderID": 10382, "EmployeeID": 4, - "OrderDate": "1996-10-30T00:00:00", - "RequiredDate": "1996-11-13T00:00:00", - "ShippedDate": "1996-11-04T00:00:00", - "ShipVia": 2, - "Freight": 54.83, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 24, - "Discount": 0.2 + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 56, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10343, - "EmployeeID": 4, - "OrderDate": "1996-10-31T00:00:00", - "RequiredDate": "1996-11-28T00:00:00", - "ShippedDate": "1996-11-06T00:00:00", + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", "ShipVia": 1, - "Freight": 110.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 4, - "Discount": 0.06 + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 76, + "ProductID": 35, "UnitPrice": 14.4, - "Quantity": 15, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10344, - "EmployeeID": 4, - "OrderDate": "1996-11-01T00:00:00", - "RequiredDate": "1996-11-29T00:00:00", - "ShippedDate": "1996-11-05T00:00:00", + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", "ShipVia": 2, - "Freight": 23.29, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 35, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10345, - "EmployeeID": 2, - "OrderDate": "1996-11-04T00:00:00", - "RequiredDate": "1996-12-02T00:00:00", - "ShippedDate": "1996-11-11T00:00:00", - "ShipVia": 2, - "Freight": 249.06, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 32, - "Quantity": 70, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 80, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 9, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10346, + "OrderID": 10442, "EmployeeID": 3, - "OrderDate": "1996-11-05T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 142.08, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10347, - "EmployeeID": 4, - "OrderDate": "1996-11-06T00:00:00", - "RequiredDate": "1996-12-04T00:00:00", - "ShippedDate": "1996-11-08T00:00:00", - "ShipVia": 3, - "Freight": 3.1, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 4, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 6, - "Discount": 0.16 + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10348, - "EmployeeID": 4, - "OrderDate": "1996-11-07T00:00:00", - "RequiredDate": "1996-12-05T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", - "ShipVia": 2, - "Freight": 0.78, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, "Discount": 0.16 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 25, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10349, - "EmployeeID": 7, - "OrderDate": "1996-11-08T00:00:00", - "RequiredDate": "1996-12-06T00:00:00", - "ShippedDate": "1996-11-15T00:00:00", + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", "ShipVia": 1, - "Freight": 8.63, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10350, - "EmployeeID": 6, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", - "ShipVia": 2, - "Freight": 64.19, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 }, { "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 18, - "Discount": 0.1 + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10351, - "EmployeeID": 1, - "OrderDate": "1996-11-11T00:00:00", - "RequiredDate": "1996-12-09T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 162.33, + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", @@ -4762,1247 +3499,992 @@ "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 13, + "UnitPrice": 6, "Quantity": 13, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 77, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10352, - "EmployeeID": 3, - "OrderDate": "1996-11-12T00:00:00", - "RequiredDate": "1996-11-26T00:00:00", - "ShippedDate": "1996-11-18T00:00:00", - "ShipVia": 3, - "Freight": 1.3, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10353, - "EmployeeID": 7, - "OrderDate": "1996-11-13T00:00:00", - "RequiredDate": "1996-12-11T00:00:00", - "ShippedDate": "1996-11-25T00:00:00", - "ShipVia": 3, - "Freight": 360.63, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 16.8, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10354, - "EmployeeID": 8, - "OrderDate": "1996-11-14T00:00:00", - "RequiredDate": "1996-12-12T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", "ShipVia": 3, - "Freight": 53.8, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 12, - "Discount": 0 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 4, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 12000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10355, - "EmployeeID": 6, - "OrderDate": "1996-11-15T00:00:00", - "RequiredDate": "1996-12-13T00:00:00", - "ShippedDate": "1996-11-20T00:00:00", - "ShipVia": 1, - "Freight": 41.95, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10356, - "EmployeeID": 6, - "OrderDate": "1996-11-18T00:00:00", - "RequiredDate": "1996-12-16T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 2, - "Freight": 36.71, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 12, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10357, + "OrderID": 10776, "EmployeeID": 1, - "OrderDate": "1996-11-19T00:00:00", - "RequiredDate": "1996-12-17T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", "ShipVia": 3, - "Freight": 34.88, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 16, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 8, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10358, - "EmployeeID": 5, - "OrderDate": "1996-11-20T00:00:00", - "RequiredDate": "1996-12-18T00:00:00", - "ShippedDate": "1996-11-27T00:00:00", - "ShipVia": 1, - "Freight": 19.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, "Discount": 0.06 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, "Discount": 0.06 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10359, - "EmployeeID": 5, - "OrderDate": "1996-11-21T00:00:00", - "RequiredDate": "1996-12-19T00:00:00", - "ShippedDate": "1996-11-26T00:00:00", - "ShipVia": 3, - "Freight": 288.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 56, - "Discount": 0.06 - }, - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 70, - "Discount": 0.06 + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10360, - "EmployeeID": 4, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 3, - "Freight": 131.7, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 35, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 10, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 35, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 28, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10361, - "EmployeeID": 1, - "OrderDate": "1996-11-22T00:00:00", - "RequiredDate": "1996-12-20T00:00:00", - "ShippedDate": "1996-12-03T00:00:00", + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", "ShipVia": 2, - "Freight": 183.17, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 54, - "Discount": 0.1 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 55, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10362, + "OrderID": 10895, "EmployeeID": 3, - "OrderDate": "1996-11-25T00:00:00", - "RequiredDate": "1996-12-23T00:00:00", - "ShippedDate": "1996-11-28T00:00:00", + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 1, - "Freight": 96.04, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 20, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10363, - "EmployeeID": 4, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1996-12-24T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", "ShipVia": 3, - "Freight": 30.54, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 12, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 12, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10364, - "EmployeeID": 1, - "OrderDate": "1996-11-26T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-04T00:00:00", - "ShipVia": 1, - "Freight": 71.97, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 10000, - "ShipCountry": "UK", + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 5, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ - { - "OrderID": 10365, - "EmployeeID": 3, - "OrderDate": "1996-11-27T00:00:00", - "RequiredDate": "1996-12-25T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 22, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 24, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, "Discount": 0 - } - ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10366, - "EmployeeID": 8, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1996-12-30T00:00:00", - "ShipVia": 2, - "Freight": 10.14, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10367, - "EmployeeID": 7, - "OrderDate": "1996-11-28T00:00:00", - "RequiredDate": "1996-12-26T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", "ShipVia": 3, - "Freight": 13.55, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 36, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 18, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10368, - "EmployeeID": 2, - "OrderDate": "1996-11-29T00:00:00", - "RequiredDate": "1996-12-27T00:00:00", - "ShippedDate": "1996-12-02T00:00:00", - "ShipVia": 2, - "Freight": 101.95, + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-09T00:00:00", + "ShipVia": 3, + "Freight": 79.46, "ShipName": "Ernst Handel", "ShipAddress": "Kirchgasse 6", "ShipCity": "Graz", "ShipPostalCode": 8010, "ShipCountry": "Austria", "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 5, - "Discount": 0.1 - }, { "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 13, - "Discount": 0.1 + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + }, { - "OrderID": 10369, - "EmployeeID": 8, - "OrderDate": "1996-12-02T00:00:00", - "RequiredDate": "1996-12-30T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 195.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10370, - "EmployeeID": 6, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-27T00:00:00", + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-08-02T00:00:00", "ShipVia": 2, - "Freight": 1.17, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", "Orders": [ { - "OrderID": 10371, - "EmployeeID": 1, - "OrderDate": "1996-12-03T00:00:00", - "RequiredDate": "1996-12-31T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", - "ShipVia": 1, - "Freight": 0.45, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", "Orders": [ { - "OrderID": 10372, - "EmployeeID": 5, - "OrderDate": "1996-12-04T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 2, - "Freight": 890.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 12, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 70, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 42, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10373, - "EmployeeID": 4, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-11T00:00:00", - "ShipVia": 3, - "Freight": 124.12, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 10.6, - "Quantity": 80, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10374, - "EmployeeID": 1, - "OrderDate": "1996-12-05T00:00:00", - "RequiredDate": "1997-01-02T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", - "ShipVia": 3, - "Freight": 3.94, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 10.6, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10375, - "EmployeeID": 3, - "OrderDate": "1996-12-06T00:00:00", - "RequiredDate": "1997-01-03T00:00:00", - "ShippedDate": "1996-12-09T00:00:00", + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", "ShipVia": 2, - "Freight": 20.12, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, + "ProductID": 39, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10376, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 2, - "Freight": 20.39, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 39000, - "ShipCountry": "Canada", + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 42, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 11000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10377, - "EmployeeID": 1, - "OrderDate": "1996-12-09T00:00:00", - "RequiredDate": "1997-01-06T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 22.21, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", - "OrderDetails": [ + }, { - "ProductID": 28, - "UnitPrice": 36.4, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 }, { - "ProductID": 39, - "UnitPrice": 14.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 20, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10378, - "EmployeeID": 5, - "OrderDate": "1996-12-10T00:00:00", - "RequiredDate": "1997-01-07T00:00:00", - "ShippedDate": "1996-12-19T00:00:00", + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", "ShipVia": 3, - "Freight": 5.44, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 49000, - "ShipCountry": "Sweden", + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 } ] } @@ -6022,13 +4504,13 @@ "Fax": "(21) 555-4545", "Orders": [ { - "OrderID": 10379, - "EmployeeID": 2, - "OrderDate": "1996-12-11T00:00:00", - "RequiredDate": "1997-01-08T00:00:00", - "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 1, - "Freight": 45.03, + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, "ShipName": "Que Delícia", "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", @@ -6037,1063 +4519,811 @@ "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 16, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 20, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10380, - "EmployeeID": 8, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", - "ShipVia": 3, - "Freight": 35.03, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, + "ProductID": 13, + "UnitPrice": 4.8, "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 6, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10381, - "EmployeeID": 3, - "OrderDate": "1996-12-12T00:00:00", - "RequiredDate": "1997-01-09T00:00:00", + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", "ShippedDate": "1996-12-13T00:00:00", - "ShipVia": 3, - "Freight": 7.99, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 14, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10382, - "EmployeeID": 4, - "OrderDate": "1996-12-13T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1996-12-16T00:00:00", + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", "ShipVia": 1, - "Freight": 94.77, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 17, - "Quantity": 32, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 9, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 14, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 60, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 50, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10383, - "EmployeeID": 8, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-18T00:00:00", - "ShipVia": 3, - "Freight": 34.24, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 18000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10384, - "EmployeeID": 3, - "OrderDate": "1996-12-16T00:00:00", - "RequiredDate": "1997-01-13T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 3, - "Freight": 168.64, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 19000, - "ShipCountry": "Sweden", + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 64.8, - "Quantity": 28, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10385, - "EmployeeID": 1, - "OrderDate": "1996-12-17T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1996-12-23T00:00:00", + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 30.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10386, - "EmployeeID": 9, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-01T00:00:00", - "ShippedDate": "1996-12-25T00:00:00", - "ShipVia": 3, - "Freight": 13.99, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, "Discount": 0 } ] } - ], - "Fax": "(11) 555-9857" + ] }, { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", "Orders": [ { - "OrderID": 10387, - "EmployeeID": 1, - "OrderDate": "1996-12-18T00:00:00", - "RequiredDate": "1997-01-15T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 2, - "Freight": 93.63, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 17000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10388, - "EmployeeID": 2, - "OrderDate": "1996-12-19T00:00:00", - "RequiredDate": "1997-01-16T00:00:00", - "ShippedDate": "1996-12-20T00:00:00", - "ShipVia": 1, - "Freight": 34.86, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 43000, - "ShipCountry": "UK", + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 7.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 14000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10389, + "OrderID": 10294, "EmployeeID": 4, - "OrderDate": "1996-12-20T00:00:00", - "RequiredDate": "1997-01-17T00:00:00", - "ShippedDate": "1996-12-24T00:00:00", + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", "ShipVia": 2, - "Freight": 47.42, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 28000, - "ShipCountry": "Canada", + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 16, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, + "ProductID": 17, + "UnitPrice": 31.2, "Quantity": 15, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 20, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10390, - "EmployeeID": 6, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-26T00:00:00", - "ShipVia": 1, - "Freight": 126.38, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 32, + "UnitPrice": 25.6, "Quantity": 40, "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 45, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 24, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 10391, - "EmployeeID": 3, - "OrderDate": "1996-12-23T00:00:00", - "RequiredDate": "1997-01-20T00:00:00", - "ShippedDate": "1996-12-31T00:00:00", + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", "ShipVia": 3, - "Freight": 5.45, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 18, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10392, - "EmployeeID": 2, - "OrderDate": "1996-12-24T00:00:00", - "RequiredDate": "1997-01-21T00:00:00", - "ShippedDate": "1997-01-01T00:00:00", + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", "ShipVia": 3, - "Freight": 122.46, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 50, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10393, + "OrderID": 10401, "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 3, - "Freight": 126.56, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 42, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 70, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 32, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10394, - "EmployeeID": 1, - "OrderDate": "1996-12-25T00:00:00", - "RequiredDate": "1997-01-22T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 3, - "Freight": 30.34, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 10, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10395, - "EmployeeID": 6, - "OrderDate": "1996-12-26T00:00:00", - "RequiredDate": "1997-01-23T00:00:00", - "ShippedDate": "1997-01-03T00:00:00", - "ShipVia": 1, - "Freight": 184.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 70, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 8, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10396, + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10598, "EmployeeID": 1, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-10T00:00:00", - "ShippedDate": "1997-01-06T00:00:00", + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", "ShipVia": 3, - "Freight": 135.35, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 40, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 21, + "UnitPrice": 21.5, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10397, + "OrderID": 10761, "EmployeeID": 5, - "OrderDate": "1996-12-27T00:00:00", - "RequiredDate": "1997-01-24T00:00:00", - "ShippedDate": "1997-01-02T00:00:00", - "ShipVia": 1, - "Freight": 60.26, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 42.4, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 18, - "Discount": 0.16 + "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10398, - "EmployeeID": 2, - "OrderDate": "1996-12-30T00:00:00", - "RequiredDate": "1997-01-27T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 89.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 30, "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10399, + "OrderID": 10852, "EmployeeID": 8, - "OrderDate": "1996-12-31T00:00:00", - "RequiredDate": "1997-01-14T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 3, - "Freight": 27.36, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 14, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10400, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 3, - "Freight": 83.93, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 35, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10401, - "EmployeeID": 1, - "OrderDate": "1997-01-01T00:00:00", - "RequiredDate": "1997-01-29T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", - "ShipVia": 1, - "Freight": 12.51, + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, "ShipName": "Rattlesnake Canyon Grocery", "ShipAddress": "2817 Milton Dr.", "ShipCity": "Albuquerque", @@ -7102,341 +5332,217 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 18, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 70, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 60, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10402, - "EmployeeID": 8, - "OrderDate": "1997-01-02T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-10T00:00:00", + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-07-03T00:00:00", "ShipVia": 2, - "Freight": 67.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 60, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 65, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0 - } - ] - }, - { - "OrderID": 10403, - "EmployeeID": 4, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-09T00:00:00", - "ShipVia": 3, - "Freight": 73.79, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ + }, { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 21, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 70, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10404, - "EmployeeID": 2, - "OrderDate": "1997-01-03T00:00:00", - "RequiredDate": "1997-01-31T00:00:00", - "ShippedDate": "1997-01-08T00:00:00", - "ShipVia": 1, - "Freight": 155.97, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, "Discount": 0.06 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 }, { - "ProductID": 49, - "UnitPrice": 16, - "Quantity": 30, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10405, - "EmployeeID": 1, - "OrderDate": "1997-01-06T00:00:00", - "RequiredDate": "1997-02-03T00:00:00", - "ShippedDate": "1997-01-22T00:00:00", - "ShipVia": 1, - "Freight": 34.82, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10406, - "EmployeeID": 7, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-13T00:00:00", - "ShipVia": 1, - "Freight": 108.04, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 10, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 42, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 }, { - "ProductID": 36, - "UnitPrice": 15.2, - "Quantity": 5, - "Discount": 0.1 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 }, { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 23, + "UnitPrice": 9, "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10407, - "EmployeeID": 2, - "OrderDate": "1997-01-07T00:00:00", - "RequiredDate": "1997-02-04T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 91.48, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + "Discount": 0 + }, { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 15, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10408, - "EmployeeID": 8, - "OrderDate": "1997-01-08T00:00:00", - "RequiredDate": "1997-02-05T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 11.26, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ + }, { - "ProductID": 37, - "UnitPrice": 20.8, - "Quantity": 10, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, "Discount": 0 } ] @@ -7444,1232 +5550,851 @@ ] }, { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ - { - "OrderID": 10409, - "EmployeeID": 3, - "OrderDate": "1997-01-09T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-01-14T00:00:00", - "ShipVia": 1, - "Freight": 29.83, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Fax": "0695-34 67 22", "Orders": [ { - "OrderID": 10410, - "EmployeeID": 3, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", "ShipVia": 3, - "Freight": 2.4, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 49, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 16, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 } ] }, { - "OrderID": 10411, - "EmployeeID": 9, - "OrderDate": "1997-01-10T00:00:00", - "RequiredDate": "1997-02-07T00:00:00", - "ShippedDate": "1997-01-21T00:00:00", - "ShipVia": 3, - "Freight": 23.65, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 41000, - "ShipCountry": "Canada", + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 25, "Discount": 0.2 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, "Discount": 0.2 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 9, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10412, - "EmployeeID": 8, - "OrderDate": "1997-01-13T00:00:00", - "RequiredDate": "1997-02-10T00:00:00", - "ShippedDate": "1997-01-15T00:00:00", - "ShipVia": 2, - "Freight": 3.77, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 49000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10413, + "OrderID": 10434, "EmployeeID": 3, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-16T00:00:00", + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", "ShipVia": 2, - "Freight": 95.66, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 40, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0 }, { "ProductID": 76, "UnitPrice": 14.4, - "Quantity": 14, - "Discount": 0 + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10414, - "EmployeeID": 2, - "OrderDate": "1997-01-14T00:00:00", - "RequiredDate": "1997-02-11T00:00:00", - "ShippedDate": "1997-01-17T00:00:00", - "ShipVia": 3, - "Freight": 21.48, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 45000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10415, - "EmployeeID": 3, - "OrderDate": "1997-01-15T00:00:00", - "RequiredDate": "1997-02-12T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", - "ShipVia": 1, - "Freight": 0.2, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 2, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10416, - "EmployeeID": 8, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 3, - "Freight": 22.72, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 28000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 20, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 20, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10417, - "EmployeeID": 4, - "OrderDate": "1997-01-16T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-01-28T00:00:00", - "ShipVia": 3, - "Freight": 70.29, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 36, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 35, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10418, + "OrderID": 10774, "EmployeeID": 4, - "OrderDate": "1997-01-17T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-01-24T00:00:00", + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", "ShipVia": 1, - "Freight": 17.55, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 16, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 15, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10419, - "EmployeeID": 4, - "OrderDate": "1997-01-20T00:00:00", - "RequiredDate": "1997-02-17T00:00:00", - "ShippedDate": "1997-01-30T00:00:00", - "ShipVia": 2, - "Freight": 137.35, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10420, - "EmployeeID": 3, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-02-18T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", "ShipVia": 1, - "Freight": 44.12, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 77.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 2, - "Discount": 0.1 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 }, { "ProductID": 70, - "UnitPrice": 12, - "Quantity": 8, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.1 + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10421, - "EmployeeID": 8, - "OrderDate": "1997-01-21T00:00:00", - "RequiredDate": "1997-03-04T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 1, - "Freight": 99.23, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 26, - "UnitPrice": 24.9, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10422, - "EmployeeID": 2, - "OrderDate": "1997-01-22T00:00:00", - "RequiredDate": "1997-02-19T00:00:00", - "ShippedDate": "1997-01-31T00:00:00", - "ShipVia": 1, - "Freight": 3.02, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10423, - "EmployeeID": 6, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-06T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 3, - "Freight": 24.5, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 14, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 30000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10424, - "EmployeeID": 7, - "OrderDate": "1997-01-23T00:00:00", - "RequiredDate": "1997-02-20T00:00:00", - "ShippedDate": "1997-01-27T00:00:00", - "ShipVia": 2, - "Freight": 370.61, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 22000, - "ShipCountry": "Canada", + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 49, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 30, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10425, - "EmployeeID": 6, - "OrderDate": "1997-01-24T00:00:00", - "RequiredDate": "1997-02-21T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 7.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, "Discount": 0.25 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 20, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10426, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-02-06T00:00:00", - "ShipVia": 1, - "Freight": 18.69, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 30000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 7, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10427, - "EmployeeID": 4, - "OrderDate": "1997-01-27T00:00:00", - "RequiredDate": "1997-02-24T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", "ShipVia": 2, - "Freight": 31.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 18.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", "Orders": [ { - "OrderID": 10428, - "EmployeeID": 7, - "OrderDate": "1997-01-28T00:00:00", - "RequiredDate": "1997-02-25T00:00:00", - "ShippedDate": "1997-02-04T00:00:00", + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", "ShipVia": 1, - "Freight": 11.09, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10429, - "EmployeeID": 3, - "OrderDate": "1997-01-29T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", "ShipVia": 2, - "Freight": 56.63, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 13, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 35.1, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10430, + "OrderID": 10360, "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-03T00:00:00", - "ShipVia": 1, - "Freight": 458.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 45, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 50, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 70, - "Discount": 0.2 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 47000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10431, - "EmployeeID": 4, - "OrderDate": "1997-01-30T00:00:00", - "RequiredDate": "1997-02-13T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", "ShipVia": 2, - "Freight": 44.17, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 49000, - "ShipCountry": "Canada", + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10432, + "OrderID": 10449, "EmployeeID": 3, - "OrderDate": "1997-01-31T00:00:00", - "RequiredDate": "1997-02-14T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", "ShipVia": 2, - "Freight": 4.34, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 40, + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ - { - "OrderID": 10433, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 73.83, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", - "OrderDetails": [ + }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 23000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10434, - "EmployeeID": 3, - "OrderDate": "1997-02-03T00:00:00", - "RequiredDate": "1997-03-03T00:00:00", - "ShippedDate": "1997-02-13T00:00:00", - "ShipVia": 2, - "Freight": 17.92, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 76, - "UnitPrice": 14.4, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 18, - "Discount": 0.16 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ + }, { - "OrderID": 10435, - "EmployeeID": 8, - "OrderDate": "1997-02-04T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-07T00:00:00", - "ShipVia": 2, - "Freight": 9.21, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 34000, - "ShipCountry": "UK", + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 }, { - "ProductID": 22, - "UnitPrice": 16.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 27.8, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10436, - "EmployeeID": 3, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-11T00:00:00", - "ShipVia": 2, - "Freight": 156.66, + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, "ShipName": "Blondel père et fils", "ShipAddress": "24, place Kléber", "ShipCity": "Strasbourg", @@ -8677,28 +6402,82 @@ "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 40, - "Discount": 0.1 - }, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 24, - "Discount": 0.1 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 } ] } @@ -8717,13 +6496,13 @@ "Fax": "981-443655", "Orders": [ { - "OrderID": 10437, - "EmployeeID": 8, - "OrderDate": "1997-02-05T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-02-12T00:00:00", - "ShipVia": 1, - "Freight": 19.97, + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, "ShipName": "Wartian Herkku", "ShipAddress": "Torikatu 38", "ShipCity": "Oulu", @@ -8731,669 +6510,449 @@ "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 15, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10438, - "EmployeeID": 3, - "OrderDate": "1997-02-06T00:00:00", - "RequiredDate": "1997-03-06T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", - "ShipVia": 2, - "Freight": 8.24, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 15.6, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 37000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10439, - "EmployeeID": 6, - "OrderDate": "1997-02-07T00:00:00", - "RequiredDate": "1997-03-07T00:00:00", - "ShippedDate": "1997-02-10T00:00:00", + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", "ShipVia": 3, - "Freight": 4.07, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 19000, - "ShipCountry": "Canada", + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 30.4, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10440, - "EmployeeID": 4, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-10T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 86.53, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 45, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 49, - "Discount": 0.16 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 90, - "Discount": 0.16 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10441, - "EmployeeID": 3, - "OrderDate": "1997-02-10T00:00:00", - "RequiredDate": "1997-03-24T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 2, - "Freight": 73.02, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 35.1, - "Quantity": 50, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10442, - "EmployeeID": 3, - "OrderDate": "1997-02-11T00:00:00", - "RequiredDate": "1997-03-11T00:00:00", - "ShippedDate": "1997-02-18T00:00:00", - "ShipVia": 2, - "Freight": 47.94, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 80, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 60, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10443, + "OrderID": 10437, "EmployeeID": 8, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-14T00:00:00", + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", "ShipVia": 1, - "Freight": 13.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 12, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 15000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10444, - "EmployeeID": 3, - "OrderDate": "1997-02-12T00:00:00", - "RequiredDate": "1997-03-12T00:00:00", - "ShippedDate": "1997-02-21T00:00:00", - "ShipVia": 3, - "Freight": 3.5, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 22000, - "ShipCountry": "Sweden", + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 31.2, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 15, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 14.4, - "Quantity": 8, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, + "ProductID": 71, + "UnitPrice": 17.2, "Quantity": 30, "Discount": 0 } ] }, { - "OrderID": 10445, - "EmployeeID": 3, - "OrderDate": "1997-02-13T00:00:00", - "RequiredDate": "1997-03-13T00:00:00", - "ShippedDate": "1997-02-20T00:00:00", - "ShipVia": 1, - "Freight": 9.3, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10446, - "EmployeeID": 6, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-02-19T00:00:00", - "ShipVia": 1, - "Freight": 14.68, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 12, - "Discount": 0.1 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 }, { "ProductID": 31, - "UnitPrice": 10, - "Quantity": 3, - "Discount": 0.1 + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10447, - "EmployeeID": 4, - "OrderDate": "1997-02-14T00:00:00", - "RequiredDate": "1997-03-14T00:00:00", - "ShippedDate": "1997-03-07T00:00:00", + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 68.66, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 40, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 35, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 2, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10448, + "OrderID": 10636, "EmployeeID": 4, - "OrderDate": "1997-02-17T00:00:00", - "RequiredDate": "1997-03-17T00:00:00", - "ShippedDate": "1997-02-24T00:00:00", - "ShipVia": 2, - "Freight": 38.82, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 6, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10449, - "EmployeeID": 3, - "OrderDate": "1997-02-18T00:00:00", - "RequiredDate": "1997-03-18T00:00:00", - "ShippedDate": "1997-02-27T00:00:00", - "ShipVia": 2, - "Freight": 53.3, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 14, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 5.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 39.4, - "Quantity": 35, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10450, - "EmployeeID": 8, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-19T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 7.23, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, - "Quantity": 20, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 6, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10451, - "EmployeeID": 4, - "OrderDate": "1997-02-19T00:00:00", - "RequiredDate": "1997-03-05T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 3, - "Freight": 189.09, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 120, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 28, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 55, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.1 } ] @@ -9401,783 +6960,619 @@ ] }, { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", "Orders": [ { - "OrderID": 10452, - "EmployeeID": 8, - "OrderDate": "1997-02-20T00:00:00", - "RequiredDate": "1997-03-20T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", "ShipVia": 1, - "Freight": 140.26, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 100, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 46000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10453, - "EmployeeID": 1, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-26T00:00:00", - "ShipVia": 2, - "Freight": 25.36, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 48, - "UnitPrice": 10.2, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10454, + "OrderID": 10337, "EmployeeID": 4, - "OrderDate": "1997-02-21T00:00:00", - "RequiredDate": "1997-03-21T00:00:00", - "ShippedDate": "1997-02-25T00:00:00", + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", "ShipVia": 3, - "Freight": 2.74, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10455, - "EmployeeID": 8, - "OrderDate": "1997-02-24T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", "ShipVia": 2, - "Freight": 180.45, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 50, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 22.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 30, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10456, - "EmployeeID": 8, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", - "ShipVia": 2, - "Freight": 8.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 40, - "Discount": 0.16 + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, "Quantity": 21, - "Discount": 0.16 + "Discount": 0 } ] }, { - "OrderID": 10457, - "EmployeeID": 2, - "OrderDate": "1997-02-25T00:00:00", - "RequiredDate": "1997-03-25T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", - "ShipVia": 1, - "Freight": 11.57, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 44, - "Quantity": 36, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10458, - "EmployeeID": 7, - "OrderDate": "1997-02-26T00:00:00", - "RequiredDate": "1997-03-26T00:00:00", - "ShippedDate": "1997-03-04T00:00:00", - "ShipVia": 3, - "Freight": 147.06, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 16000, - "ShipCountry": "Belgium", + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 36.8, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 50, - "Discount": 0 + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10459, - "EmployeeID": 4, - "OrderDate": "1997-02-27T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-02-28T00:00:00", + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", "ShipVia": 2, - "Freight": 25.09, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 40, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10460, - "EmployeeID": 8, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-03T00:00:00", + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", "ShipVia": 1, - "Freight": 16.27, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 10, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10461, - "EmployeeID": 1, - "OrderDate": "1997-02-28T00:00:00", - "RequiredDate": "1997-03-28T00:00:00", - "ShippedDate": "1997-03-05T00:00:00", - "ShipVia": 3, - "Freight": 148.61, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 28, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 60, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 38000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10462, - "EmployeeID": 2, - "OrderDate": "1997-03-03T00:00:00", - "RequiredDate": "1997-03-31T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 1, - "Freight": 6.17, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 50000, - "ShipCountry": "UK", - "OrderDetails": [ + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, { - "ProductID": 13, - "UnitPrice": 4.8, - "Quantity": 1, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 21, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 34000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10463, + "OrderID": 10675, "EmployeeID": 5, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-06T00:00:00", - "ShipVia": 3, - "Freight": 14.78, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 21000, - "ShipCountry": "Belgium", + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 21, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 11.2, - "Quantity": 50, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10464, - "EmployeeID": 4, - "OrderDate": "1997-03-04T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 2, - "Freight": 89, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 17.6, - "Quantity": 16, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 3, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 27.2, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10465, + "OrderID": 10859, "EmployeeID": 1, - "OrderDate": "1997-03-05T00:00:00", - "RequiredDate": "1997-04-02T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", - "ShipVia": 3, - "Freight": 145.04, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 25, - "Discount": 0 + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 29, - "UnitPrice": 99, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 45, - "UnitPrice": 7.6, + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 30, - "Discount": 0.1 + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 50, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, "UnitPrice": 13, - "Quantity": 25, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10466, - "EmployeeID": 4, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-13T00:00:00", - "ShipVia": 1, - "Freight": 11.93, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 9.6, - "Quantity": 5, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 } ] } - ], - "Fax": "(11) 555-7647" + ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "GROSR", + "Company": "GROSELLA-Restaurante", + "ContactName": "Manuel Pereira", + "ContactTitle": "Owner", + "Address": "5ª Ave. Los Palos Grandes", + "City": "Caracas", + "Region": "DF", + "PostalCode": 1081, + "Country": "Venezuela", + "Phone": "(2) 283-2951", + "Fax": "(2) 283-3397", "Orders": [ { - "OrderID": 10467, + "OrderID": 10268, "EmployeeID": 8, - "OrderDate": "1997-03-06T00:00:00", - "RequiredDate": "1997-04-03T00:00:00", - "ShippedDate": "1997-03-11T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 28, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 12, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10468, - "EmployeeID": 3, - "OrderDate": "1997-03-07T00:00:00", - "RequiredDate": "1997-04-04T00:00:00", - "ShippedDate": "1997-03-12T00:00:00", + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", "ShipVia": 3, - "Freight": 44.12, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 20.7, - "Quantity": 8, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 36.8, - "Quantity": 15, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "0555-09876" + ] }, { "CustomerID": "WHITC", @@ -10193,13 +7588,13 @@ "Fax": "(206) 555-4115", "Orders": [ { - "OrderID": 10469, - "EmployeeID": 1, - "OrderDate": "1997-03-10T00:00:00", - "RequiredDate": "1997-04-07T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", "ShipVia": 1, - "Freight": 60.18, + "Freight": 4.56, "ShipName": "White Clover Markets", "ShipAddress": "1029 - 12th Ave. S.", "ShipCity": "Seattle", @@ -10208,525 +7603,464 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10470, + "OrderID": 10344, "EmployeeID": 4, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-14T00:00:00", + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", "ShipVia": 2, - "Freight": 64.56, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 50, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, - "Quantity": 8, - "Discount": 0 + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10471, - "EmployeeID": 2, - "OrderDate": "1997-03-11T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-18T00:00:00", - "ShipVia": 3, - "Freight": 45.59, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 25000, - "ShipCountry": "UK", + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 25000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10472, - "EmployeeID": 8, - "OrderDate": "1997-03-12T00:00:00", - "RequiredDate": "1997-04-09T00:00:00", - "ShippedDate": "1997-03-19T00:00:00", - "ShipVia": 1, - "Freight": 4.2, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 21000, - "ShipCountry": "UK", + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 3.6, - "Quantity": 80, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 18, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 49000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10473, - "EmployeeID": 1, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-03-27T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", "ShipVia": 3, - "Freight": 16.37, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 90698, - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 12, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 17.2, - "Quantity": 12, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10474, - "EmployeeID": 5, - "OrderDate": "1997-03-13T00:00:00", - "RequiredDate": "1997-04-10T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", - "ShipVia": 2, - "Freight": 83.49, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 18.6, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 12, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 36.4, - "Quantity": 18, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 21, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, "Discount": 0 + } + ] + }, + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 }, { "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 45000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10475, - "EmployeeID": 9, - "OrderDate": "1997-03-14T00:00:00", - "RequiredDate": "1997-04-11T00:00:00", - "ShippedDate": "1997-04-04T00:00:00", - "ShipVia": 1, - "Freight": 68.52, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 13.6, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 60, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 14.4, - "Quantity": 42, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10476, + "OrderID": 10696, "EmployeeID": 8, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 3, - "Freight": 4.41, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 70, + "ProductID": 46, "UnitPrice": 12, - "Quantity": 12, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", - "Orders": [ + }, { - "OrderID": 10477, - "EmployeeID": 5, - "OrderDate": "1997-03-17T00:00:00", - "RequiredDate": "1997-04-14T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", - "ShipVia": 2, - "Freight": 13.02, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 14.4, + "ProductID": 26, + "UnitPrice": 31.23, "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 14.4, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10478, - "EmployeeID": 2, - "OrderDate": "1997-03-18T00:00:00", - "RequiredDate": "1997-04-01T00:00:00", - "ShippedDate": "1997-03-26T00:00:00", - "ShipVia": 3, - "Freight": 4.81, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 24.8, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10479, + "OrderID": 10904, "EmployeeID": 3, - "OrderDate": "1997-03-19T00:00:00", - "RequiredDate": "1997-04-16T00:00:00", - "ShippedDate": "1997-03-21T00:00:00", + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 708.95, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 210.8, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 26.2, - "Quantity": 28, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + }, + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 26.6, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10480, - "EmployeeID": 6, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-24T00:00:00", + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 1.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 7.6, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, "Discount": 0 } ] @@ -10734,413 +8068,287 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & Ale", + "ContactName": "Art Braunschweiger", + "ContactTitle": "Sales Manager", + "Address": "P.O. Box 555", + "City": "Lander", + "Region": "WY", + "PostalCode": 82520, + "Country": "USA", + "Phone": "(307) 555-4680", + "Fax": "(307) 555-6525", "Orders": [ { - "OrderID": 10481, - "EmployeeID": 8, - "OrderDate": "1997-03-20T00:00:00", - "RequiredDate": "1997-04-17T00:00:00", - "ShippedDate": "1997-03-25T00:00:00", + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", "ShipVia": 2, - "Freight": 64.33, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 16, + "ProductID": 33, + "UnitPrice": 2, "Quantity": 24, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 27.2, - "Quantity": 40, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10482, - "EmployeeID": 1, - "OrderDate": "1997-03-21T00:00:00", - "RequiredDate": "1997-04-18T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 7.48, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, + "ProductID": 19, + "UnitPrice": 7.3, "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ - { - "OrderID": 10483, - "EmployeeID": 7, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-25T00:00:00", - "ShipVia": 2, - "Freight": 15.28, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", - "OrderDetails": [ + "Discount": 0.06 + }, { - "ProductID": 34, - "UnitPrice": 11.2, - "Quantity": 35, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 30, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 45000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10484, - "EmployeeID": 3, - "OrderDate": "1997-03-24T00:00:00", - "RequiredDate": "1997-04-21T00:00:00", - "ShippedDate": "1997-04-01T00:00:00", - "ShipVia": 3, - "Freight": 6.88, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 8, - "Quantity": 14, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 14.7, - "Quantity": 10, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 3, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10485, - "EmployeeID": 4, - "OrderDate": "1997-03-25T00:00:00", - "RequiredDate": "1997-04-08T00:00:00", - "ShippedDate": "1997-03-31T00:00:00", + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", "ShipVia": 2, - "Freight": 64.45, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 15.2, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 3, - "UnitPrice": 8, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 55, - "UnitPrice": 19.2, - "Quantity": 30, - "Discount": 0.1 + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 12, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10486, - "EmployeeID": 1, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", "ShipVia": 2, - "Freight": 30.53, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 42.4, - "Quantity": 25, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 8, - "Quantity": 16, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10487, - "EmployeeID": 2, - "OrderDate": "1997-03-26T00:00:00", - "RequiredDate": "1997-04-23T00:00:00", - "ShippedDate": "1997-03-28T00:00:00", + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", "ShipVia": 2, - "Freight": 71.07, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 7.3, - "Quantity": 5, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 }, { - "ProductID": 26, - "UnitPrice": 24.9, - "Quantity": 30, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 54, - "UnitPrice": 5.9, - "Quantity": 24, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10488, - "EmployeeID": 8, - "OrderDate": "1997-03-27T00:00:00", - "RequiredDate": "1997-04-24T00:00:00", - "ShippedDate": "1997-04-02T00:00:00", - "ShipVia": 2, - "Freight": 4.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 30, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10489, - "EmployeeID": 6, - "OrderDate": "1997-03-28T00:00:00", - "RequiredDate": "1997-04-25T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 5.29, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 16, - "UnitPrice": 13.9, - "Quantity": 18, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, "Discount": 0 } ] @@ -11148,1159 +8356,813 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Fax": "0372-035189", "Orders": [ { - "OrderID": 10490, - "EmployeeID": 7, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-03T00:00:00", - "ShipVia": 2, - "Freight": 210.19, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 44, - "Quantity": 60, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 }, { - "ProductID": 68, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 6.2, - "Quantity": 36, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10491, - "EmployeeID": 8, - "OrderDate": "1997-03-31T00:00:00", - "RequiredDate": "1997-04-28T00:00:00", - "ShippedDate": "1997-04-08T00:00:00", - "ShipVia": 3, - "Freight": 16.96, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 15.5, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 7, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 10000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10492, - "EmployeeID": 3, - "OrderDate": "1997-04-01T00:00:00", - "RequiredDate": "1997-04-29T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 1, - "Freight": 62.89, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 11.2, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 }, { "ProductID": 42, "UnitPrice": 11.2, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 9, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10493, - "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-10T00:00:00", - "ShipVia": 3, - "Freight": 10.64, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 65, - "UnitPrice": 16.8, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 66, - "UnitPrice": 13.6, - "Quantity": 10, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, "Discount": 0.1 }, { - "ProductID": 69, - "UnitPrice": 28.8, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10494, + "OrderID": 10418, "EmployeeID": 4, - "OrderDate": "1997-04-02T00:00:00", - "RequiredDate": "1997-04-30T00:00:00", - "ShippedDate": "1997-04-09T00:00:00", - "ShipVia": 2, - "Freight": 65.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10495, - "EmployeeID": 3, - "OrderDate": "1997-04-03T00:00:00", - "RequiredDate": "1997-05-01T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 3, - "Freight": 4.65, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 23, - "UnitPrice": 7.2, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 7.7, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 10.4, - "Quantity": 5, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10496, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 2, - "Freight": 46.77, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10497, - "EmployeeID": 7, - "OrderDate": "1997-04-04T00:00:00", - "RequiredDate": "1997-05-02T00:00:00", - "ShippedDate": "1997-04-07T00:00:00", - "ShipVia": 1, - "Freight": 36.21, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 30.4, - "Quantity": 14, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 }, { - "ProductID": 72, - "UnitPrice": 27.8, - "Quantity": 25, - "Discount": 0 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 }, { "ProductID": 77, "UnitPrice": 10.4, - "Quantity": 25, - "Discount": 0 + "Quantity": 55, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10498, - "EmployeeID": 8, - "OrderDate": "1997-04-07T00:00:00", - "RequiredDate": "1997-05-05T00:00:00", - "ShippedDate": "1997-04-11T00:00:00", - "ShipVia": 2, - "Freight": 29.75, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 14, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10499, - "EmployeeID": 4, - "OrderDate": "1997-04-08T00:00:00", - "RequiredDate": "1997-05-06T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 102.02, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10500, - "EmployeeID": 6, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-17T00:00:00", + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", "ShipVia": 1, - "Freight": 42.68, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10501, - "EmployeeID": 9, - "OrderDate": "1997-04-09T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 3, - "Freight": 8.85, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ - { - "OrderID": 10502, - "EmployeeID": 2, - "OrderDate": "1997-04-10T00:00:00", - "RequiredDate": "1997-05-08T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 69.32, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ + }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 21, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10503, - "EmployeeID": 6, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-16T00:00:00", - "ShipVia": 2, - "Freight": 16.74, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + }, { - "OrderID": 10504, - "EmployeeID": 4, - "OrderDate": "1997-04-11T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-04-18T00:00:00", + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", "ShipVia": 3, - "Freight": 59.13, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 21, "UnitPrice": 10, - "Quantity": 12, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 21000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10505, - "EmployeeID": 3, - "OrderDate": "1997-04-14T00:00:00", - "RequiredDate": "1997-05-12T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 7.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 33000, - "ShipCountry": "Canada", + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, { "ProductID": 62, "UnitPrice": 49.3, - "Quantity": 3, + "Quantity": 48, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10506, - "EmployeeID": 9, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 21.19, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 14, - "Discount": 0.1 + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10507, - "EmployeeID": 7, - "OrderDate": "1997-04-15T00:00:00", - "RequiredDate": "1997-05-13T00:00:00", - "ShippedDate": "1997-04-22T00:00:00", - "ShipVia": 1, - "Freight": 47.45, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 15, - "Discount": 0.16 - }, + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10508, - "EmployeeID": 1, - "OrderDate": "1997-04-16T00:00:00", - "RequiredDate": "1997-05-14T00:00:00", - "ShippedDate": "1997-05-13T00:00:00", - "ShipVia": 2, - "Freight": 4.99, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10509, - "EmployeeID": 4, - "OrderDate": "1997-04-17T00:00:00", - "RequiredDate": "1997-05-15T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 1, - "Freight": 0.15, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10510, - "EmployeeID": 6, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", - "ShipVia": 3, - "Freight": 367.63, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 36, - "Discount": 0.1 + "Quantity": 40, + "Discount": 0.06 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10511, - "EmployeeID": 4, - "OrderDate": "1997-04-18T00:00:00", - "RequiredDate": "1997-05-16T00:00:00", - "ShippedDate": "1997-04-21T00:00:00", - "ShipVia": 3, - "Freight": 350.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 50, - "Discount": 0.16 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ - { - "OrderID": 10512, - "EmployeeID": 7, - "OrderDate": "1997-04-21T00:00:00", - "RequiredDate": "1997-05-19T00:00:00", - "ShippedDate": "1997-04-24T00:00:00", - "ShipVia": 2, - "Freight": 3.53, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 9, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10513, - "EmployeeID": 7, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-06-03T00:00:00", - "ShippedDate": "1997-04-28T00:00:00", + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", "ShipVia": 1, - "Freight": 105.65, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.2 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 15, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10514, - "EmployeeID": 3, - "OrderDate": "1997-04-22T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", - "ShipVia": 2, - "Freight": 789.95, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 39, - "Discount": 0 - }, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 35, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 70, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 39, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10515, - "EmployeeID": 2, - "OrderDate": "1997-04-23T00:00:00", - "RequiredDate": "1997-05-07T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 1, - "Freight": 204.47, + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, "ShipName": "QUICK-Stop", "ShipAddress": "Taucherstraße 10", "ShipCity": "Cunewalde", @@ -12308,131 +9170,135 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 120, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0.16 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10516, - "EmployeeID": 2, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 62.78, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 80, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ { "ProductID": 42, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 13000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10517, + "OrderID": 11021, "EmployeeID": 3, - "OrderDate": "1997-04-24T00:00:00", - "RequiredDate": "1997-05-22T00:00:00", - "ShippedDate": "1997-04-29T00:00:00", - "ShipVia": 3, - "Freight": 32.07, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 19000, - "ShipCountry": "UK", + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] @@ -12440,347 +9306,299 @@ ] }, { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", "Orders": [ { - "OrderID": 10518, - "EmployeeID": 4, - "OrderDate": "1997-04-25T00:00:00", - "RequiredDate": "1997-05-09T00:00:00", - "ShippedDate": "1997-05-05T00:00:00", - "ShipVia": 2, - "Freight": 218.15, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 9, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10519, - "EmployeeID": 6, - "OrderDate": "1997-04-28T00:00:00", - "RequiredDate": "1997-05-26T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 3, - "Freight": 91.76, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10520, - "EmployeeID": 7, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-01T00:00:00", - "ShipVia": 1, - "Freight": 13.37, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 8, + "UnitPrice": 3.6, + "Quantity": 28, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 5, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10521, + "OrderID": 10635, "EmployeeID": 8, - "OrderDate": "1997-04-29T00:00:00", - "RequiredDate": "1997-05-27T00:00:00", - "ShippedDate": "1997-05-02T00:00:00", - "ShipVia": 2, - "Freight": 17.22, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10522, - "EmployeeID": 4, - "OrderDate": "1997-04-30T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-06T00:00:00", - "ShipVia": 1, - "Freight": 45.33, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.2 - }, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 24, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10523, + "OrderID": 10818, "EmployeeID": 7, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 2, - "Freight": 77.63, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 16000, - "ShipCountry": "UK", + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 6, - "Discount": 0.1 + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 37000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10524, - "EmployeeID": 1, - "OrderDate": "1997-05-01T00:00:00", - "RequiredDate": "1997-05-29T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 2, - "Freight": 244.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 2, + "UnitPrice": 19, "Quantity": 10, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 60, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, "Discount": 0 } ] @@ -12788,1370 +9606,1092 @@ ] }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Fax": "(5) 555-2934", "Orders": [ { - "OrderID": 10525, - "EmployeeID": 1, - "OrderDate": "1997-05-02T00:00:00", - "RequiredDate": "1997-05-30T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 11.06, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10526, - "EmployeeID": 4, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-15T00:00:00", - "ShipVia": 2, - "Freight": 58.59, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 24, + "UnitPrice": 3.6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10527, - "EmployeeID": 7, - "OrderDate": "1997-05-05T00:00:00", - "RequiredDate": "1997-06-02T00:00:00", - "ShippedDate": "1997-05-07T00:00:00", - "ShipVia": 1, - "Freight": 41.9, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10528, - "EmployeeID": 6, - "OrderDate": "1997-05-06T00:00:00", - "RequiredDate": "1997-05-20T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", "ShipVia": 2, - "Freight": 3.35, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 3, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 9, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10529, - "EmployeeID": 5, - "OrderDate": "1997-05-07T00:00:00", - "RequiredDate": "1997-06-04T00:00:00", - "ShippedDate": "1997-05-09T00:00:00", - "ShipVia": 2, - "Freight": 66.69, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 26000, - "ShipCountry": "Belgium", + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 14, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10530, - "EmployeeID": 3, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", "ShipVia": 2, - "Freight": 339.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 25, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10531, - "EmployeeID": 7, - "OrderDate": "1997-05-08T00:00:00", - "RequiredDate": "1997-06-05T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", - "ShipVia": 1, - "Freight": 8.12, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 2, "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10532, - "EmployeeID": 7, - "OrderDate": "1997-05-09T00:00:00", - "RequiredDate": "1997-06-06T00:00:00", - "ShippedDate": "1997-05-12T00:00:00", + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 3, - "Freight": 74.46, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 11, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 }, { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 24, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10533, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-22T00:00:00", - "ShipVia": 1, - "Freight": 188.04, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 45000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 50, - "Discount": 0.06 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 73, + "ProductID": 70, "UnitPrice": 15, - "Quantity": 24, - "Discount": 0.06 + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10534, - "EmployeeID": 8, - "OrderDate": "1997-05-12T00:00:00", - "RequiredDate": "1997-06-09T00:00:00", - "ShippedDate": "1997-05-14T00:00:00", + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", "ShipVia": 2, - "Freight": 27.94, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 17, + "UnitPrice": 39, "Quantity": 10, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 54, "UnitPrice": 7.45, "Quantity": 10, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10535, - "EmployeeID": 4, - "OrderDate": "1997-05-13T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-21T00:00:00", - "ShipVia": 1, - "Freight": 15.64, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", "ShipCity": "México D.F.", - "ShipPostalCode": 5023, + "ShipPostalCode": 5033, "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 5, - "Discount": 0.1 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 } ] } - ], - "Fax": "(5) 555-3932" + ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "0342-023176", + "Fax": "0342-023177", "Orders": [ { - "OrderID": 10536, - "EmployeeID": 3, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-06-11T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", - "ShipVia": 2, - "Freight": 58.88, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, - "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10537, - "EmployeeID": 1, - "OrderDate": "1997-05-14T00:00:00", - "RequiredDate": "1997-05-28T00:00:00", - "ShippedDate": "1997-05-19T00:00:00", + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 1, - "Freight": 78.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 6, "Discount": 0 }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 20, - "Discount": 0 - }, { "ProductID": 72, "UnitPrice": 34.8, - "Quantity": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 9, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 44000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10538, - "EmployeeID": 9, - "OrderDate": "1997-05-15T00:00:00", - "RequiredDate": "1997-06-12T00:00:00", - "ShippedDate": "1997-05-16T00:00:00", + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", "ShipVia": 3, - "Freight": 4.87, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 1, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, "Discount": 0 } ] }, { - "OrderID": 10539, - "EmployeeID": 6, - "OrderDate": "1997-05-16T00:00:00", - "RequiredDate": "1997-06-13T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 3, - "Freight": 12.36, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 39000, - "ShipCountry": "UK", + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 8, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 6, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, "Discount": 0 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10540, - "EmployeeID": 3, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 3, - "Freight": 1007.64, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 14000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 35, + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10541, + "OrderID": 10280, "EmployeeID": 2, - "OrderDate": "1997-05-19T00:00:00", - "RequiredDate": "1997-06-16T00:00:00", - "ShippedDate": "1997-05-29T00:00:00", + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", "ShipVia": 1, - "Freight": 68.65, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.1 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 4, - "Discount": 0.1 + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 36, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, - "Discount": 0.1 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10542, - "EmployeeID": 1, - "OrderDate": "1997-05-20T00:00:00", - "RequiredDate": "1997-06-17T00:00:00", - "ShippedDate": "1997-05-26T00:00:00", + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 3, - "Freight": 10.95, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 24, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10543, - "EmployeeID": 8, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-23T00:00:00", - "ShipVia": 2, - "Freight": 48.17, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10544, - "EmployeeID": 4, - "OrderDate": "1997-05-21T00:00:00", - "RequiredDate": "1997-06-18T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 24.91, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 7, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAZYK", - "Company": "Lazy K Kountry Store", - "ContactName": "John Steel", - "ContactTitle": "Marketing Manager", - "Address": "12 Orchestra Terrace", - "City": "Walla Walla", - "Region": "WA", - "PostalCode": 99362, - "Country": "USA", - "Phone": "(509) 555-7969", - "Fax": "(509) 555-6221", - "Orders": [ + }, { - "OrderID": 10545, - "EmployeeID": 8, - "OrderDate": "1997-05-22T00:00:00", - "RequiredDate": "1997-06-19T00:00:00", - "ShippedDate": "1997-06-26T00:00:00", + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", "ShipVia": 2, - "Freight": 11.92, - "ShipName": "Lazy K Kountry Store", - "ShipAddress": "12 Orchestra Terrace", - "ShipCity": "Walla Walla", - "ShipRegion": "WA", - "ShipPostalCode": 99362, - "ShipCountry": "USA", + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 40000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ + }, { - "OrderID": 10546, + "OrderID": 10626, "EmployeeID": 1, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-05-27T00:00:00", - "ShipVia": 3, - "Freight": 194.72, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 10, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ + }, { - "OrderID": 10547, - "EmployeeID": 3, - "OrderDate": "1997-05-23T00:00:00", - "RequiredDate": "1997-06-20T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", - "ShipVia": 2, - "Freight": 178.43, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 12000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 24, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 60, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10548, - "EmployeeID": 3, - "OrderDate": "1997-05-26T00:00:00", - "RequiredDate": "1997-06-23T00:00:00", - "ShippedDate": "1997-06-02T00:00:00", + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", "ShipVia": 2, - "Freight": 1.43, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10549, - "EmployeeID": 5, - "OrderDate": "1997-05-27T00:00:00", - "RequiredDate": "1997-06-10T00:00:00", - "ShippedDate": "1997-05-30T00:00:00", - "ShipVia": 1, - "Freight": 171.24, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 55, - "Discount": 0.16 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 100, - "Discount": 0.16 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 48, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10550, - "EmployeeID": 7, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-06-25T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", "ShipVia": 3, - "Freight": 4.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 34000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0.1 - }, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10551, - "EmployeeID": 4, - "OrderDate": "1997-05-28T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-06T00:00:00", + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 72.95, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 17000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, + "ProductID": 47, + "UnitPrice": 9.5, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10552, - "EmployeeID": 2, - "OrderDate": "1997-05-29T00:00:00", - "RequiredDate": "1997-06-26T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 1, - "Freight": 83.22, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 18, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10553, - "EmployeeID": 2, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-03T00:00:00", + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", "ShipVia": 2, - "Freight": 149.49, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 14, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 24, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, "Discount": 0 + } + ] + }, + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 35000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 30, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 6, "Discount": 0 } @@ -14160,169 +10700,261 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "Phone": "069-0245984", + "Fax": "069-0245874", "Orders": [ { - "OrderID": 10554, + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10284, "EmployeeID": 4, - "OrderDate": "1997-05-30T00:00:00", - "RequiredDate": "1997-06-27T00:00:00", - "ShippedDate": "1997-06-05T00:00:00", - "ShipVia": 3, - "Freight": 120.97, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 60, + "UnitPrice": 27.2, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10555, - "EmployeeID": 6, - "OrderDate": "1997-06-02T00:00:00", - "RequiredDate": "1997-06-30T00:00:00", - "ShippedDate": "1997-06-04T00:00:00", - "ShipVia": 3, - "Freight": 252.49, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0.2 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 18, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 40, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10556, - "EmployeeID": 2, - "OrderDate": "1997-06-03T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 9.8, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 24, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { "OrderID": 10557, "EmployeeID": 9, @@ -14350,418 +10982,349 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 23000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10558, - "EmployeeID": 1, - "OrderDate": "1997-06-04T00:00:00", - "RequiredDate": "1997-07-02T00:00:00", - "ShippedDate": "1997-06-10T00:00:00", - "ShipVia": 2, - "Freight": 72.97, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 15, + "UnitPrice": 15.5, "Quantity": 25, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 18, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10559, - "EmployeeID": 6, - "OrderDate": "1997-06-05T00:00:00", - "RequiredDate": "1997-07-03T00:00:00", - "ShippedDate": "1997-06-13T00:00:00", - "ShipVia": 1, - "Freight": 8.05, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, "Discount": 0.06 - }, + } + ] + }, + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10560, - "EmployeeID": 8, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-02T00:00:00", "ShipVia": 1, - "Freight": 36.65, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10561, - "EmployeeID": 2, - "OrderDate": "1997-06-06T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-09T00:00:00", - "ShipVia": 2, - "Freight": 242.21, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 23000, - "ShipCountry": "Sweden", + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 50, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10562, - "EmployeeID": 1, - "OrderDate": "1997-06-09T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-12T00:00:00", - "ShipVia": 1, - "Freight": 22.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 20, - "Discount": 0.1 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10563, - "EmployeeID": 2, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-06-24T00:00:00", - "ShipVia": 2, - "Freight": 60.43, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 70, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10564, - "EmployeeID": 4, - "OrderDate": "1997-06-10T00:00:00", - "RequiredDate": "1997-07-08T00:00:00", - "ShippedDate": "1997-06-16T00:00:00", + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", "ShipVia": 3, - "Freight": 13.75, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.06 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 38000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10565, - "EmployeeID": 8, - "OrderDate": "1997-06-11T00:00:00", - "RequiredDate": "1997-07-09T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", "ShipVia": 2, - "Freight": 7.15, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 25, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 18, - "Discount": 0.1 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10566, - "EmployeeID": 9, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-18T00:00:00", + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", "ShipVia": 1, - "Freight": 88.4, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 18, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, "Discount": 0 } ] @@ -14769,1433 +11332,1162 @@ ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LILAS", + "Company": "LILA-Supermercado", + "ContactName": "Carlos González", + "ContactTitle": "Accounting Manager", + "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "City": "Barquisimeto", + "Region": "Lara", + "PostalCode": 3508, + "Country": "Venezuela", + "Phone": "(9) 331-6954", + "Fax": "(9) 331-7256", "Orders": [ { - "OrderID": 10567, - "EmployeeID": 1, - "OrderDate": "1997-06-12T00:00:00", - "RequiredDate": "1997-07-10T00:00:00", - "ShippedDate": "1997-06-17T00:00:00", - "ShipVia": 1, - "Freight": 33.97, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 84.81, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ - { - "OrderID": 10568, - "EmployeeID": 3, - "OrderDate": "1997-06-13T00:00:00", - "RequiredDate": "1997-07-11T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 3, - "Freight": 6.54, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10569, - "EmployeeID": 5, - "OrderDate": "1997-06-16T00:00:00", - "RequiredDate": "1997-07-14T00:00:00", - "ShippedDate": "1997-07-11T00:00:00", + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", "ShipVia": 1, - "Freight": 58.98, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 0.12, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 22000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10570, + "OrderID": 10330, "EmployeeID": 3, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-15T00:00:00", - "ShippedDate": "1997-06-19T00:00:00", - "ShipVia": 3, - "Freight": 188.99, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 1, + "Freight": 12.75, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10571, - "EmployeeID": 8, - "OrderDate": "1997-06-17T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", "ShipVia": 3, - "Freight": 26.06, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 34.88, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 11, - "Discount": 0.16 + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10572, + "OrderID": 10381, "EmployeeID": 3, - "OrderDate": "1997-06-18T00:00:00", - "RequiredDate": "1997-07-16T00:00:00", - "ShippedDate": "1997-06-25T00:00:00", - "ShipVia": 2, - "Freight": 116.43, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 40000, - "ShipCountry": "Sweden", + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 7.99, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, - "Discount": 0.1 - }, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "ShipVia": 3, + "Freight": 148.61, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10573, - "EmployeeID": 7, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-20T00:00:00", - "ShipVia": 3, - "Freight": 84.84, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 102.02, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 49, + "UnitPrice": 20, "Quantity": 25, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10574, - "EmployeeID": 4, - "OrderDate": "1997-06-19T00:00:00", - "RequiredDate": "1997-07-17T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", "ShipVia": 2, - "Freight": 37.6, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 48.17, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 2, - "Discount": 0 - }, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "ShipVia": 1, + "Freight": 42.13, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 6, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10575, + "OrderID": 10823, "EmployeeID": 5, - "OrderDate": "1997-06-20T00:00:00", - "RequiredDate": "1997-07-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", - "ShipVia": 1, - "Freight": 127.34, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 163.97, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 6, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10576, - "EmployeeID": 3, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-07-07T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", "ShipVia": 3, - "Freight": 18.56, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.21, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, - "Discount": 0 + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ + }, { - "OrderID": 10577, - "EmployeeID": 9, - "OrderDate": "1997-06-23T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-06-30T00:00:00", + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 25.41, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", + "Freight": 73.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 46, + "UnitPrice": 12, "Quantity": 20, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10578, - "EmployeeID": 4, - "OrderDate": "1997-06-24T00:00:00", - "RequiredDate": "1997-07-22T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 3, - "Freight": 29.6, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 31000, - "ShipCountry": "UK", + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-29T00:00:00", + "ShipVia": 1, + "Freight": 12.91, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 6, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10579, + "OrderID": 11071, "EmployeeID": 1, - "OrderDate": "1997-06-25T00:00:00", - "RequiredDate": "1997-07-23T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 2, - "Freight": 13.73, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-10T00:00:00", + "ShipVia": 1, + "Freight": 0.93, + "ShipName": "LILA-Supermercado", + "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", + "ShipCity": "Barquisimeto", + "ShipRegion": "Lara", + "ShipPostalCode": 3508, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 21, - "Discount": 0 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 } ] } - ], - "Fax": "(415) 555-5938" + ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Fax": "(21) 555-3413", "Orders": [ { - "OrderID": 10580, - "EmployeeID": 4, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-01T00:00:00", + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 75.89, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10581, - "EmployeeID": 3, - "OrderDate": "1997-06-26T00:00:00", - "RequiredDate": "1997-07-24T00:00:00", - "ShippedDate": "1997-07-02T00:00:00", - "ShipVia": 1, - "Freight": 3.01, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10582, - "EmployeeID": 3, - "OrderDate": "1997-06-27T00:00:00", - "RequiredDate": "1997-07-25T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", "ShipVia": 2, - "Freight": 27.71, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 4, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 14, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10583, - "EmployeeID": 2, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 7.28, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, "Discount": 0 }, { "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + }, + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10584, + "OrderID": 10622, "EmployeeID": 4, - "OrderDate": "1997-06-30T00:00:00", - "RequiredDate": "1997-07-28T00:00:00", - "ShippedDate": "1997-07-04T00:00:00", - "ShipVia": 1, - "Freight": 59.14, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 31, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "Quantity": 18, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10585, - "EmployeeID": 7, - "OrderDate": "1997-07-01T00:00:00", - "RequiredDate": "1997-07-29T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 1, - "Freight": 13.41, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 22, + "UnitPrice": 21, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10586, - "EmployeeID": 9, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", - "ShipVia": 1, - "Freight": 0.48, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10587, - "EmployeeID": 1, - "OrderDate": "1997-07-02T00:00:00", - "RequiredDate": "1997-07-30T00:00:00", - "ShippedDate": "1997-07-09T00:00:00", + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", "ShipVia": 1, - "Freight": 62.52, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", "ShipCity": "Sao Paulo", "ShipRegion": "RJ", "ShipPostalCode": 2389, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10588, - "EmployeeID": 2, - "OrderDate": "1997-07-03T00:00:00", - "RequiredDate": "1997-07-31T00:00:00", - "ShippedDate": "1997-07-10T00:00:00", - "ShipVia": 3, - "Freight": 194.67, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 100, - "Discount": 0.2 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10589, - "EmployeeID": 8, - "OrderDate": "1997-07-04T00:00:00", - "RequiredDate": "1997-08-01T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", "ShipVia": 2, - "Freight": 4.42, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Sao Paulo", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 43000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10590, - "EmployeeID": 4, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-08-04T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", - "ShipVia": 3, - "Freight": 44.77, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 40000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 } ] } ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10591, - "EmployeeID": 1, - "OrderDate": "1997-07-07T00:00:00", - "RequiredDate": "1997-07-21T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", "ShipVia": 1, - "Freight": 55.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 54, + "UnitPrice": 5.9, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 50, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10592, - "EmployeeID": 3, - "OrderDate": "1997-07-08T00:00:00", - "RequiredDate": "1997-08-05T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", "ShipVia": 1, - "Freight": 32.1, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, - "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 } ] }, { - "OrderID": 10593, - "EmployeeID": 7, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-08-13T00:00:00", - "ShipVia": 2, - "Freight": 174.2, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10594, - "EmployeeID": 3, - "OrderDate": "1997-07-09T00:00:00", - "RequiredDate": "1997-08-06T00:00:00", - "ShippedDate": "1997-07-16T00:00:00", - "ShipVia": 2, - "Freight": 5.24, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 24, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10595, - "EmployeeID": 2, - "OrderDate": "1997-07-10T00:00:00", - "RequiredDate": "1997-08-07T00:00:00", - "ShippedDate": "1997-07-14T00:00:00", + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", "ShipVia": 1, - "Freight": 96.78, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 120, - "Discount": 0.25 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 65, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10596, - "EmployeeID": 8, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", - "ShipVia": 1, - "Freight": 16.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, "Discount": 0.2 + } + ] + }, + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 24, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10597, - "EmployeeID": 7, - "OrderDate": "1997-07-11T00:00:00", - "RequiredDate": "1997-08-08T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", - "ShipVia": 3, - "Freight": 35.12, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10598, - "EmployeeID": 1, - "OrderDate": "1997-07-14T00:00:00", - "RequiredDate": "1997-08-11T00:00:00", - "ShippedDate": "1997-07-18T00:00:00", + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", "ShipVia": 3, - "Freight": 44.42, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 50, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + }, + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 9, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, "Discount": 0 } ] - } + }, + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-06-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } ] }, { @@ -16205,1875 +12497,1438 @@ "ContactTitle": "Sales Representative", "Address": "Fauntleroy Circus", "City": "London", - "PostalCode": 20000, + "PostalCode": 22000, "Country": "UK", "Phone": "(171) 555-1212", "Orders": [ { - "OrderID": 10599, - "EmployeeID": 6, - "OrderDate": "1997-07-15T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", "ShipVia": 3, - "Freight": 29.98, + "Freight": 22.77, "ShipName": "Best Beverages", "ShipAddress": "Fauntleroy Circus", "ShipCity": "London", - "ShipPostalCode": 14000, + "ShipPostalCode": 22000, "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10600, - "EmployeeID": 4, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-13T00:00:00", - "ShippedDate": "1997-07-21T00:00:00", - "ShipVia": 1, - "Freight": 45.13, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, - "ShipCountry": "USA", + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 4, + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10601, - "EmployeeID": 7, - "OrderDate": "1997-07-16T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 1, - "Freight": 58.3, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 60, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10602, - "EmployeeID": 8, - "OrderDate": "1997-07-17T00:00:00", - "RequiredDate": "1997-08-14T00:00:00", - "ShippedDate": "1997-07-22T00:00:00", - "ShipVia": 2, - "Freight": 2.92, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10603, - "EmployeeID": 8, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 2, - "Freight": 48.77, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 48, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10604, - "EmployeeID": 1, - "OrderDate": "1997-07-18T00:00:00", - "RequiredDate": "1997-08-15T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", - "ShipVia": 1, - "Freight": 7.46, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + }, + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 10, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ + }, { - "OrderID": 10605, - "EmployeeID": 1, - "OrderDate": "1997-07-21T00:00:00", - "RequiredDate": "1997-08-18T00:00:00", - "ShippedDate": "1997-07-29T00:00:00", + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", "ShipVia": 2, - "Freight": 379.13, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 2.17, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", + "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 20, - "Discount": 0.06 - }, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "Best Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 } ] } - ] + ], + "Fax": "(171) 555-1212" }, { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5634, + "PostalCode": 5432, "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", + "Phone": "(11) 555-7647", "Orders": [ { - "OrderID": 10606, - "EmployeeID": 4, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-31T00:00:00", - "ShipVia": 3, - "Freight": 79.4, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5634, + "ShipPostalCode": 5432, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 5, + "UnitPrice": 17, "Quantity": 20, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10607, - "EmployeeID": 5, - "OrderDate": "1997-07-22T00:00:00", - "RequiredDate": "1997-08-19T00:00:00", - "ShippedDate": "1997-07-25T00:00:00", - "ShipVia": 1, - "Freight": 200.24, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 100, + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 14, + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 42, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 12, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", - "Orders": [ + }, { - "OrderID": 10608, + "OrderID": 10494, "EmployeeID": 4, - "OrderDate": "1997-07-23T00:00:00", - "RequiredDate": "1997-08-20T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", "ShipVia": 2, - "Freight": 27.79, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10609, - "EmployeeID": 7, - "OrderDate": "1997-07-24T00:00:00", - "RequiredDate": "1997-08-21T00:00:00", - "ShippedDate": "1997-07-30T00:00:00", + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", "ShipVia": 2, - "Freight": 1.85, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 6, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-7647" }, { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", "Orders": [ { - "OrderID": 10610, - "EmployeeID": 8, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 1, - "Freight": 26.78, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10611, - "EmployeeID": 6, - "OrderDate": "1997-07-25T00:00:00", - "RequiredDate": "1997-08-22T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", "ShipVia": 2, - "Freight": 80.65, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10612, - "EmployeeID": 1, - "OrderDate": "1997-07-28T00:00:00", - "RequiredDate": "1997-08-25T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", "ShipVia": 2, - "Freight": 544.08, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 55, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 18, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 40, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 80, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10613, - "EmployeeID": 4, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 2, - "Freight": 8.11, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "PostalCode": 48637, + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", "Orders": [ { - "OrderID": 10614, - "EmployeeID": 8, - "OrderDate": "1997-07-29T00:00:00", - "RequiredDate": "1997-08-26T00:00:00", - "ShippedDate": "1997-08-01T00:00:00", - "ShipVia": 3, - "Freight": 1.93, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 14, + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 8, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 5, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10615, - "EmployeeID": 2, - "OrderDate": "1997-07-30T00:00:00", - "RequiredDate": "1997-08-27T00:00:00", - "ShippedDate": "1997-08-06T00:00:00", - "ShipVia": 3, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10616, - "EmployeeID": 1, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-05T00:00:00", - "ShipVia": 2, - "Freight": 116.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ + }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 }, { "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, - "Discount": 0.06 + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 } ] }, { - "OrderID": 10617, - "EmployeeID": 4, - "OrderDate": "1997-07-31T00:00:00", - "RequiredDate": "1997-08-28T00:00:00", - "ShippedDate": "1997-08-04T00:00:00", + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", "ShipVia": 2, - "Freight": 18.53, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10618, - "EmployeeID": 1, - "OrderDate": "1997-08-01T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-08T00:00:00", - "ShipVia": 1, - "Freight": 154.68, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 30000, - "ShipCountry": "Canada", - "OrderDetails": [ + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 70, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0 + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 } ] }, { - "OrderID": 10619, - "EmployeeID": 3, - "OrderDate": "1997-08-04T00:00:00", - "RequiredDate": "1997-09-01T00:00:00", - "ShippedDate": "1997-08-07T00:00:00", + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", "ShipVia": 3, - "Freight": 91.05, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 21000, - "ShipCountry": "Canada", + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 42, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ + }, { - "OrderID": 10620, - "EmployeeID": 2, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 0.94, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 31000, - "ShipCountry": "Canada", + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 5, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 21000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10621, - "EmployeeID": 4, - "OrderDate": "1997-08-05T00:00:00", - "RequiredDate": "1997-09-02T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 2, - "Freight": 23.73, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50269, - "ShipPostalCode": 39000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 }, { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 }, { "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 15, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10622, - "EmployeeID": 4, - "OrderDate": "1997-08-06T00:00:00", - "RequiredDate": "1997-09-03T00:00:00", - "ShippedDate": "1997-08-11T00:00:00", - "ShipVia": 3, - "Freight": 50.97, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0.2 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10623, - "EmployeeID": 8, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-12T00:00:00", + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", "ShipVia": 2, - "Freight": 97.18, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { "ProductID": 14, "UnitPrice": 23.25, - "Quantity": 21, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 3, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ + }, { - "OrderID": 10624, - "EmployeeID": 4, - "OrderDate": "1997-08-07T00:00:00", - "RequiredDate": "1997-09-04T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 94.8, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 10, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 6, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10625, - "EmployeeID": 3, - "OrderDate": "1997-08-08T00:00:00", - "RequiredDate": "1997-09-05T00:00:00", - "ShippedDate": "1997-08-14T00:00:00", + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", "ShipVia": 1, - "Freight": 43.9, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 19000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10626, - "EmployeeID": 1, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-08T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 2, - "Freight": 138.69, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 12, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 20, - "Discount": 0 + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10627, - "EmployeeID": 8, - "OrderDate": "1997-08-11T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 3, - "Freight": 107.46, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ + }, { - "OrderID": 10628, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 30.36, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ - { - "OrderID": 10629, - "EmployeeID": 4, - "OrderDate": "1997-08-12T00:00:00", - "RequiredDate": "1997-09-09T00:00:00", - "ShippedDate": "1997-08-20T00:00:00", - "ShipVia": 3, - "Freight": 85.46, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", - "OrderDetails": [ + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, { "ProductID": 29, "UnitPrice": 123.79, - "Quantity": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10630, - "EmployeeID": 1, - "OrderDate": "1997-08-13T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 2, - "Freight": 32.35, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 }, { "ProductID": 76, "UnitPrice": 18, "Quantity": 35, - "Discount": 0 + "Discount": 0.16 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10631, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-15T00:00:00", + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", "ShipVia": 1, - "Freight": 0.87, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10632, - "EmployeeID": 8, - "OrderDate": "1997-08-14T00:00:00", - "RequiredDate": "1997-09-11T00:00:00", - "ShippedDate": "1997-08-19T00:00:00", - "ShipVia": 1, - "Freight": 41.38, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 20, - "Discount": 0.06 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10633, - "EmployeeID": 7, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-18T00:00:00", - "ShipVia": 3, - "Freight": 477.9, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 13, - "Discount": 0.16 - }, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + }, + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 80, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10634, - "EmployeeID": 4, - "OrderDate": "1997-08-15T00:00:00", - "RequiredDate": "1997-09-12T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 487.38, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 }, { "ProductID": 18, "UnitPrice": 62.5, - "Quantity": 50, - "Discount": 0 + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipPostalCode": 48637, + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 2, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", "Orders": [ { - "OrderID": 10635, + "OrderID": 10301, "EmployeeID": 8, - "OrderDate": "1997-08-18T00:00:00", - "RequiredDate": "1997-09-15T00:00:00", - "ShippedDate": "1997-08-21T00:00:00", - "ShipVia": 3, - "Freight": 47.46, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, + "ProductID": 40, + "UnitPrice": 14.7, "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 15, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10636, - "EmployeeID": 4, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 1.15, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 6, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10637, - "EmployeeID": 6, - "OrderDate": "1997-08-19T00:00:00", - "RequiredDate": "1997-09-16T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 1, - "Freight": 201.29, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, + "ProductID": 23, + "UnitPrice": 7.2, "Quantity": 25, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0.06 + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10638, - "EmployeeID": 3, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", - "ShipVia": 1, - "Freight": 158.44, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 60, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10639, + "OrderID": 10513, "EmployeeID": 7, - "OrderDate": "1997-08-20T00:00:00", - "RequiredDate": "1997-09-17T00:00:00", - "ShippedDate": "1997-08-27T00:00:00", - "ShipVia": 3, - "Freight": 38.64, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ - { - "OrderID": 10640, - "EmployeeID": 4, - "OrderDate": "1997-08-21T00:00:00", - "RequiredDate": "1997-09-18T00:00:00", - "ShippedDate": "1997-08-28T00:00:00", + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", "ShipVia": 1, - "Freight": 23.55, + "Freight": 105.65, "ShipName": "Die Wandernde Kuh", "ShipAddress": "Adenauerallee 900", "ShipCity": "Stuttgart", @@ -18081,996 +13936,833 @@ "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, "Quantity": 15, - "Discount": 0.25 + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10641, - "EmployeeID": 4, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-08-26T00:00:00", - "ShipVia": 2, - "Freight": 179.61, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 2, "UnitPrice": 19, - "Quantity": 50, - "Discount": 0 + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 10642, - "EmployeeID": 7, - "OrderDate": "1997-08-22T00:00:00", - "RequiredDate": "1997-09-19T00:00:00", - "ShippedDate": "1997-09-05T00:00:00", - "ShipVia": 3, - "Freight": 41.89, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10643, - "EmployeeID": 6, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 29.46, - "ShipName": "Alfreds Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 15, - "Discount": 0.25 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0.25 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 2, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10644, - "EmployeeID": 3, - "OrderDate": "1997-08-25T00:00:00", - "RequiredDate": "1997-09-22T00:00:00", - "ShippedDate": "1997-09-01T00:00:00", + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", "ShipVia": 2, - "Freight": 0.14, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, "Quantity": 4, "Discount": 0.1 }, { - "ProductID": 43, - "UnitPrice": 46, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", "Orders": [ { - "OrderID": 10645, - "EmployeeID": 4, - "OrderDate": "1997-08-26T00:00:00", - "RequiredDate": "1997-09-23T00:00:00", - "ShippedDate": "1997-09-02T00:00:00", - "ShipVia": 1, - "Freight": 12.41, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10646, - "EmployeeID": 9, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 142.33, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0.25 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10647, + "OrderID": 10629, "EmployeeID": 4, - "OrderDate": "1997-08-27T00:00:00", - "RequiredDate": "1997-09-10T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 2, - "Freight": 45.54, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10648, + "OrderID": 10872, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-09T00:00:00", + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", "ShipVia": 2, - "Freight": 14.25, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, "Quantity": 15, - "Discount": 0.16 + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10649, + "OrderID": 10874, "EmployeeID": 5, - "OrderDate": "1997-08-28T00:00:00", - "RequiredDate": "1997-09-25T00:00:00", - "ShippedDate": "1997-08-29T00:00:00", - "ShipVia": 3, - "Freight": 6.2, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 47000, - "ShipCountry": "Belgium", + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, "Quantity": 20, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10650, - "EmployeeID": 5, - "OrderDate": "1997-08-29T00:00:00", - "RequiredDate": "1997-09-26T00:00:00", - "ShippedDate": "1997-09-03T00:00:00", - "ShipVia": 3, - "Freight": 176.81, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 30, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10651, - "EmployeeID": 8, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 20.6, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10652, - "EmployeeID": 4, - "OrderDate": "1997-09-01T00:00:00", - "RequiredDate": "1997-09-29T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 2, - "Freight": 7.14, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 2, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, "Discount": 0.25 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10653, - "EmployeeID": 1, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", "ShipVia": 1, - "Freight": 93.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 } ] } - ] + ], + "Fax": "(95) 555 82 82" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 33000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "OLDWO", + "Company": "Old World Delicatessen", + "ContactName": "Rene Phillips", + "ContactTitle": "Sales Representative", + "Address": "2743 Bering St.", + "City": "Anchorage", + "Region": "AK", + "PostalCode": 99508, + "Country": "USA", + "Phone": "(907) 555-7584", + "Fax": "(907) 555-2880", "Orders": [ { - "OrderID": 10654, - "EmployeeID": 5, - "OrderDate": "1997-09-02T00:00:00", - "RequiredDate": "1997-09-30T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 1, - "Freight": 55.26, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 12000, - "ShipCountry": "Sweden", + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 12, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, "Discount": 0.1 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10655, - "EmployeeID": 1, - "OrderDate": "1997-09-03T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-11T00:00:00", - "ShipVia": 2, - "Freight": 4.41, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10656, - "EmployeeID": 6, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 1, - "Freight": 57.15, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 3, - "Discount": 0.1 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 28, - "Discount": 0.1 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 6, - "Discount": 0.1 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10657, - "EmployeeID": 2, - "OrderDate": "1997-09-04T00:00:00", - "RequiredDate": "1997-10-02T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 352.69, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 15, - "UnitPrice": 15.5, + "ProductID": 27, + "UnitPrice": 35.1, "Quantity": 50, "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, + } + ] + }, + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, "Quantity": 24, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 45, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 10, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 45, - "Discount": 0 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10658, - "EmployeeID": 4, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-08T00:00:00", - "ShipVia": 1, - "Freight": 364.15, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 55, - "Discount": 0.06 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10659, - "EmployeeID": 7, - "OrderDate": "1997-09-05T00:00:00", - "RequiredDate": "1997-10-03T00:00:00", - "ShippedDate": "1997-09-10T00:00:00", - "ShipVia": 2, - "Freight": 105.81, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, { "ProductID": 31, "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0.06 + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 24, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HUNGC", - "Company": "Hungry Coyote Import Store", - "ContactName": "Yoshi Latimer", - "ContactTitle": "Sales Representative", - "Address": "City Center Plaza 516 Main St.", - "City": "Elgin", - "Region": "OR", - "PostalCode": 97827, - "Country": "USA", - "Phone": "(503) 555-6874", - "Fax": "(503) 555-2376", - "Orders": [ + }, { - "OrderID": 10660, - "EmployeeID": 8, - "OrderDate": "1997-09-08T00:00:00", - "RequiredDate": "1997-10-06T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", - "ShipVia": 1, - "Freight": 111.29, - "ShipName": "Hungry Coyote Import Store", - "ShipAddress": "City Center Plaza 516 Main St.", - "ShipCity": "Elgin", - "ShipRegion": "OR", - "ShipPostalCode": 97827, + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 21, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10661, - "EmployeeID": 7, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-15T00:00:00", - "ShipVia": 3, - "Freight": 17.55, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 3, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 49, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 } ] } @@ -19090,13 +14782,13 @@ "Fax": "(503) 555-9646", "Orders": [ { - "OrderID": 10662, - "EmployeeID": 3, - "OrderDate": "1997-09-09T00:00:00", - "RequiredDate": "1997-10-07T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", "ShipVia": 2, - "Freight": 1.28, + "Freight": 0.56, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19105,132 +14797,50 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10663, - "EmployeeID": 2, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-09-24T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 2, - "Freight": 113.15, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10664, - "EmployeeID": 1, - "OrderDate": "1997-09-10T00:00:00", - "RequiredDate": "1997-10-08T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 3, - "Freight": 1.27, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10665, - "EmployeeID": 1, - "OrderDate": "1997-09-11T00:00:00", - "RequiredDate": "1997-10-09T00:00:00", - "ShippedDate": "1997-09-17T00:00:00", - "ShipVia": 2, - "Freight": 26.31, + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, "ShipName": "Lonesome Pine Restaurant", "ShipAddress": "89 Chiaroscuro Rd.", "ShipCity": "Portland", @@ -19239,249 +14849,292 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 1, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10666, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", "ShipVia": 2, - "Freight": 232.42, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10667, - "EmployeeID": 7, - "OrderDate": "1997-09-12T00:00:00", - "RequiredDate": "1997-10-10T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", "ShipVia": 1, - "Freight": 78.09, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 45, - "Discount": 0.2 - }, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 10668, - "EmployeeID": 1, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", "ShipVia": 2, - "Freight": 47.22, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0.1 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", "Orders": [ { - "OrderID": 10669, - "EmployeeID": 2, - "OrderDate": "1997-09-15T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-09-22T00:00:00", - "ShipVia": 1, - "Freight": 24.39, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - } + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10670, - "EmployeeID": 4, - "OrderDate": "1997-09-16T00:00:00", - "RequiredDate": "1997-10-14T00:00:00", - "ShippedDate": "1997-09-18T00:00:00", + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", "ShipVia": 1, - "Freight": 203.48, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 32, + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 60, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 25, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] @@ -19489,1902 +15142,1343 @@ ] }, { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", + "CustomerID": "THEBI", + "Company": "The Big Cheese", + "ContactName": "Liz Nixon", "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", + "Address": "89 Jefferson Way Suite 2", + "City": "Portland", + "Region": "OR", + "PostalCode": 97201, + "Country": "USA", + "Phone": "(503) 555-3612", "Orders": [ { - "OrderID": 10671, - "EmployeeID": 1, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-09-24T00:00:00", - "ShipVia": 1, - "Freight": 30.34, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 16, - "UnitPrice": 17.45, + "UnitPrice": 13.9, "Quantity": 10, "Discount": 0 }, { "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, + "UnitPrice": 39.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10672, - "EmployeeID": 9, - "OrderDate": "1997-09-17T00:00:00", - "RequiredDate": "1997-10-01T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 95.75, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 50000, - "ShipCountry": "Sweden", + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10673, + "OrderID": 10805, "EmployeeID": 2, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-19T00:00:00", - "ShipVia": 1, - "Freight": 22.76, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 42, + "ProductID": 34, "UnitPrice": 14, - "Quantity": 6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10674, - "EmployeeID": 4, - "OrderDate": "1997-09-18T00:00:00", - "RequiredDate": "1997-10-16T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 2, - "Freight": 0.9, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60699, - "ShipPostalCode": 29000, - "ShipCountry": "UK", + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 5, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(503) 555-3612" }, { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", "Orders": [ { - "OrderID": 10675, - "EmployeeID": 5, - "OrderDate": "1997-09-19T00:00:00", - "RequiredDate": "1997-10-17T00:00:00", - "ShippedDate": "1997-09-23T00:00:00", - "ShipVia": 2, - "Freight": 31.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 10676, - "EmployeeID": 2, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-29T00:00:00", + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", "ShipVia": 2, - "Freight": 2.01, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 2, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10677, - "EmployeeID": 1, - "OrderDate": "1997-09-22T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 3, - "Freight": 4.03, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10678, + "OrderID": 10890, "EmployeeID": 7, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 3, - "Freight": 388.98, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 100, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, "Discount": 0 }, { "ProductID": 41, "UnitPrice": 9.65, - "Quantity": 120, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 30, + "Quantity": 14, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(198) 555-8888", "Orders": [ { - "OrderID": 10679, - "EmployeeID": 8, - "OrderDate": "1997-09-23T00:00:00", - "RequiredDate": "1997-10-21T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 27.94, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80379, + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10680, - "EmployeeID": 1, - "OrderDate": "1997-09-24T00:00:00", - "RequiredDate": "1997-10-22T00:00:00", - "ShippedDate": "1997-09-26T00:00:00", - "ShipVia": 1, - "Freight": 26.61, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30676, + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0.25 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, + "ProductID": 41, + "UnitPrice": 7.7, "Quantity": 20, - "Discount": 0.25 + "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10681, + "OrderID": 10321, "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 3, - "Freight": 76.13, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20137, + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 28, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10682, - "EmployeeID": 3, - "OrderDate": "1997-09-25T00:00:00", - "RequiredDate": "1997-10-23T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 2, - "Freight": 36.13, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90698, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 4, + "UnitPrice": 2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, "Discount": 0 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10683, - "EmployeeID": 2, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-10-01T00:00:00", - "ShipVia": 1, - "Freight": 4.4, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50269, + "ShipPostalCode": 39000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 9, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10684, - "EmployeeID": 3, - "OrderDate": "1997-09-26T00:00:00", - "RequiredDate": "1997-10-24T00:00:00", - "ShippedDate": "1997-09-30T00:00:00", - "ShipVia": 1, - "Freight": 145.63, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10685, + "OrderID": 10674, "EmployeeID": 4, - "OrderDate": "1997-09-29T00:00:00", - "RequiredDate": "1997-10-13T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", "ShipVia": 2, - "Freight": 33.75, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60699, + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30222, + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 15, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10686, + "OrderID": 10798, "EmployeeID": 2, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-08T00:00:00", + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 1, - "Freight": 96.5, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60634, + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10687, + "OrderID": 10829, "EmployeeID": 9, - "OrderDate": "1997-09-30T00:00:00", - "RequiredDate": "1997-10-28T00:00:00", - "ShippedDate": "1997-10-30T00:00:00", - "ShipVia": 2, - "Freight": 296.43, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50889, + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, "Quantity": 10, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, - "Discount": 0.25 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10688, - "EmployeeID": 4, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-15T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 299.09, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40624, + "ShipPostalCode": 44000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 60, - "Discount": 0.1 + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, "Discount": 0 } ] } - ] + ], + "Fax": "(198) 555-8888" }, { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 38000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", "Orders": [ { - "OrderID": 10689, - "EmployeeID": 1, - "OrderDate": "1997-10-01T00:00:00", - "RequiredDate": "1997-10-29T00:00:00", - "ShippedDate": "1997-10-07T00:00:00", - "ShipVia": 2, - "Freight": 13.42, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 16000, - "ShipCountry": "Sweden", + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10690, - "EmployeeID": 1, - "OrderDate": "1997-10-02T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-03T00:00:00", - "ShipVia": 1, - "Freight": 15.8, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.25 - }, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10691, - "EmployeeID": 2, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-10-22T00:00:00", + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", "ShipVia": 2, - "Freight": 810.05, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 40, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 40, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 24, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 48, + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10692, - "EmployeeID": 4, - "OrderDate": "1997-10-03T00:00:00", - "RequiredDate": "1997-10-31T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 2, - "Freight": 61.02, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10693, - "EmployeeID": 3, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-10-20T00:00:00", - "ShippedDate": "1997-10-10T00:00:00", + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 3, - "Freight": 139.34, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 6, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 60, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShippedDate": "1998-06-15T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 15, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "Phone": "0555-09876", "Orders": [ { - "OrderID": 10694, - "EmployeeID": 8, - "OrderDate": "1997-10-06T00:00:00", - "RequiredDate": "1997-11-03T00:00:00", - "ShippedDate": "1997-10-09T00:00:00", - "ShipVia": 3, - "Freight": 398.36, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 90, + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10695, - "EmployeeID": 7, - "OrderDate": "1997-10-07T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 16.72, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 10, + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, "Quantity": 4, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10696, + "OrderID": 10456, "EmployeeID": 8, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 3, - "Freight": 102.55, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 18, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10697, + "OrderID": 10468, "EmployeeID": 3, - "OrderDate": "1997-10-08T00:00:00", - "RequiredDate": "1997-11-05T00:00:00", - "ShippedDate": "1997-10-14T00:00:00", - "ShipVia": 1, - "Freight": 45.52, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, - "Discount": 0.25 + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 9, - "Discount": 0.25 - }, + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 }, { "ProductID": 70, "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.25 + "Quantity": 14, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10698, - "EmployeeID": 4, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-17T00:00:00", - "ShipVia": 1, - "Freight": 272.47, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { "ProductID": 11, "UnitPrice": 21, "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 65, "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10699, - "EmployeeID": 3, - "OrderDate": "1997-10-09T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-13T00:00:00", - "ShipVia": 3, - "Freight": 0.58, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, + "ProductID": 55, + "UnitPrice": 24, "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10700, - "EmployeeID": 3, - "OrderDate": "1997-10-10T00:00:00", - "RequiredDate": "1997-11-07T00:00:00", - "ShippedDate": "1997-10-16T00:00:00", - "ShipVia": 1, - "Freight": 65.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 40, - "Discount": 0.2 + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.2 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10701, - "EmployeeID": 6, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-10-27T00:00:00", - "ShippedDate": "1997-10-15T00:00:00", + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 3, - "Freight": 220.31, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 20, "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.16 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10702, - "EmployeeID": 4, - "OrderDate": "1997-10-13T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 1, - "Freight": 23.94, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 6, - "Discount": 0 + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 15, + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 32000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10703, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-10-20T00:00:00", + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 2, - "Freight": 152.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 28000, - "ShipCountry": "Sweden", + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 35, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, "Discount": 0 }, { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10704, - "EmployeeID": 6, - "OrderDate": "1997-10-14T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 4.78, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 6, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, "Discount": 0 }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 35, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 48, - "UnitPrice": 12.75, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 24, "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10705, - "EmployeeID": 9, - "OrderDate": "1997-10-15T00:00:00", - "RequiredDate": "1997-11-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", - "ShipVia": 2, - "Freight": 3.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ + }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 4, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10706, - "EmployeeID": 8, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-11-13T00:00:00", - "ShippedDate": "1997-10-21T00:00:00", - "ShipVia": 3, - "Freight": 135.63, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 8, + "Quantity": 24, "Discount": 0 } ] } - ] + ], + "Fax": "0555-09876" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "SAVEA", + "Company": "Save-a-lot Markets", + "ContactName": "Jose Pavarotti", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 10000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "187 Suffolk Ln.", + "City": "Boise", + "Region": "ID", + "PostalCode": 83720, + "Country": "USA", + "Phone": "(208) 555-8097", "Orders": [ { - "OrderID": 10707, - "EmployeeID": 4, - "OrderDate": "1997-10-16T00:00:00", - "RequiredDate": "1997-10-30T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 3, - "Freight": 21.74, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 28000, - "ShipCountry": "UK", + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 16, + "UnitPrice": 13.9, "Quantity": 21, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 40, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 28, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10708, - "EmployeeID": 6, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 2.96, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 4, - "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0 + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10709, + "OrderID": 10393, "EmployeeID": 1, - "OrderDate": "1997-10-17T00:00:00", - "RequiredDate": "1997-11-14T00:00:00", - "ShippedDate": "1997-11-20T00:00:00", + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", "ShipVia": 3, - "Freight": 210.8, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 40, - "Discount": 0 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 28, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10710, - "EmployeeID": 1, - "OrderDate": "1997-10-20T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-10-23T00:00:00", - "ShipVia": 1, - "Freight": 4.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 5, - "Discount": 0 + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10711, - "EmployeeID": 5, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 52.41, + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21393,92 +16487,68 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 42, + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 120, - "Discount": 0 + "Discount": 0.1 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10712, - "EmployeeID": 3, - "OrderDate": "1997-10-21T00:00:00", - "RequiredDate": "1997-11-18T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", - "ShipVia": 1, - "Freight": 89.93, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10713, - "EmployeeID": 1, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-24T00:00:00", + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", "ShipVia": 1, - "Freight": 167.05, + "Freight": 140.26, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21487,39 +16557,56 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 18, + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 110, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 24, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 } ] }, { - "OrderID": 10714, - "EmployeeID": 5, - "OrderDate": "1997-10-22T00:00:00", - "RequiredDate": "1997-11-19T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", "ShipVia": 3, - "Freight": 24.49, + "Freight": 252.49, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21528,382 +16615,291 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 14, + "UnitPrice": 23.25, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.2 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 27, - "Discount": 0.25 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10715, - "EmployeeID": 3, - "OrderDate": "1997-10-23T00:00:00", - "RequiredDate": "1997-11-06T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 1, - "Freight": 63.2, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 21, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10716, - "EmployeeID": 4, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-27T00:00:00", - "ShipVia": 2, - "Freight": 22.57, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 7, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10717, - "EmployeeID": 1, - "OrderDate": "1997-10-24T00:00:00", - "RequiredDate": "1997-11-21T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 2, - "Freight": 59.25, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 32, - "Discount": 0.06 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 25, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10718, + "OrderID": 10612, "EmployeeID": 1, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-10-29T00:00:00", - "ShipVia": 3, - "Freight": 170.88, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 36, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, "Quantity": 40, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10719, + "OrderID": 10627, "EmployeeID": 8, - "OrderDate": "1997-10-27T00:00:00", - "RequiredDate": "1997-11-24T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 51.44, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 12, - "Discount": 0.25 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10720, - "EmployeeID": 8, - "OrderDate": "1997-10-28T00:00:00", - "RequiredDate": "1997-11-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", "ShipVia": 2, - "Freight": 9.53, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 8, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10721, - "EmployeeID": 5, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-11-26T00:00:00", - "ShippedDate": "1997-10-31T00:00:00", + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 3, - "Freight": 48.92, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10722, - "EmployeeID": 8, - "OrderDate": "1997-10-29T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-04T00:00:00", + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", "ShipVia": 1, - "Freight": 74.58, + "Freight": 65.1, "ShipName": "Save-a-lot Markets", "ShipAddress": "187 Suffolk Ln.", "ShipCity": "Boise", @@ -21912,1506 +16908,1248 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 3, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 }, { "ProductID": 68, "UnitPrice": 12.5, - "Quantity": 45, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, + "ProductID": 41, + "UnitPrice": 9.65, "Quantity": 42, "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10723, - "EmployeeID": 3, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-11-27T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", "ShipVia": 1, - "Freight": 21.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, { "ProductID": 26, "UnitPrice": 31.23, - "Quantity": 15, + "Quantity": 30, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MEREP", - "Company": "Mère Paillarde", - "ContactName": "Jean Fresnière", - "ContactTitle": "Marketing Assistant", - "Address": "43 rue St. Laurent", - "City": "Montréal", - "Region": "Québec", - "PostalCode": 26000, - "Country": "Canada", - "Phone": "(514) 555-8054", - "Fax": "(514) 555-8055", - "Orders": [ - { - "OrderID": 10724, - "EmployeeID": 8, - "OrderDate": "1997-10-30T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 2, - "Freight": 57.75, - "ShipName": "Mère Paillarde", - "ShipAddress": "43 rue St. Laurent", - "ShipCity": "Montréal", - "ShipRegion": "Québec", - "ShipPostalCode": 20000, - "ShipCountry": "Canada", - "OrderDetails": [ + }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FAMIA", - "Company": "Familia Arquibaldo", - "ContactName": "Aria Cruz", - "ContactTitle": "Marketing Assistant", - "Address": "Rua Orós, 92", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5442, - "Country": "Brazil", - "Phone": "(11) 555-9857", - "Orders": [ + }, { - "OrderID": 10725, - "EmployeeID": 4, - "OrderDate": "1997-10-31T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-05T00:00:00", - "ShipVia": 3, - "Freight": 10.83, - "ShipName": "Familia Arquibaldo", - "ShipAddress": "Rua Orós, 92", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5442, - "ShipCountry": "Brazil", + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9857" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10726, - "EmployeeID": 4, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-11-17T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", "ShipVia": 1, - "Freight": 16.56, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 24000, - "ShipCountry": "UK", + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10727, - "EmployeeID": 2, - "OrderDate": "1997-11-03T00:00:00", - "RequiredDate": "1997-12-01T00:00:00", - "ShippedDate": "1997-12-05T00:00:00", + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", "ShipVia": 1, - "Freight": 89.9, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 20, - "Discount": 0.06 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 }, { "ProductID": 59, "UnitPrice": 55, - "Quantity": 10, - "Discount": 0.06 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10728, - "EmployeeID": 4, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-02T00:00:00", - "ShippedDate": "1997-11-11T00:00:00", - "ShipVia": 2, - "Freight": 58.33, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 6, - "Discount": 0 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 19, + "UnitPrice": 9.2, "Quantity": 12, - "Discount": 0 + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10729, - "EmployeeID": 8, - "OrderDate": "1997-11-04T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 3, - "Freight": 141.06, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 50, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 30, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 40, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10730, - "EmployeeID": 5, - "OrderDate": "1997-11-05T00:00:00", - "RequiredDate": "1997-12-03T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", "ShipVia": 1, - "Freight": 20.12, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, "Discount": 0.06 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 3, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, "Discount": 0.06 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 10, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10731, + "OrderID": 10941, "EmployeeID": 7, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-14T00:00:00", - "ShipVia": 1, - "Freight": 96.65, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 30, - "Discount": 0.06 + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10732, - "EmployeeID": 3, - "OrderDate": "1997-11-06T00:00:00", - "RequiredDate": "1997-12-04T00:00:00", - "ShippedDate": "1997-11-07T00:00:00", - "ShipVia": 1, - "Freight": 16.97, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10733, - "EmployeeID": 1, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-10T00:00:00", - "ShipVia": 3, - "Freight": 110.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 34000, - "ShipCountry": "Sweden", + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 16, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, "Discount": 0 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 20, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 25, + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10734, - "EmployeeID": 2, - "OrderDate": "1997-11-07T00:00:00", - "RequiredDate": "1997-12-05T00:00:00", - "ShippedDate": "1997-11-12T00:00:00", - "ShipVia": 3, - "Freight": 1.63, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 30, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, "Discount": 0 } ] } ], - "Fax": "(11) 555-9482" + "Fax": "(208) 555-8097" }, { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", "Orders": [ { - "OrderID": 10735, - "EmployeeID": 6, - "OrderDate": "1997-11-10T00:00:00", - "RequiredDate": "1997-12-08T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", "ShipVia": 2, - "Freight": 45.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ - { - "OrderID": 10736, - "EmployeeID": 9, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 44.1, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 40, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, "Discount": 0 }, { "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, + "UnitPrice": 6.2, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", - "Orders": [ + }, { - "OrderID": 10737, - "EmployeeID": 2, - "OrderDate": "1997-11-11T00:00:00", - "RequiredDate": "1997-12-09T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 7.79, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 4, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 10738, - "EmployeeID": 2, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", "ShipVia": 1, - "Freight": 2.91, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "VINET", - "Company": "Vins et alcools Chevalier", - "ContactName": "Paul Henriot", - "ContactTitle": "Accounting Manager", - "Address": "59 rue de Abbaye", - "City": "Reims", - "PostalCode": 51100, - "Country": "France", - "Phone": "26.47.15.10", - "Fax": "26.47.15.11", + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", "Orders": [ { - "OrderID": 10739, - "EmployeeID": 3, - "OrderDate": "1997-11-12T00:00:00", - "RequiredDate": "1997-12-10T00:00:00", - "ShippedDate": "1997-11-17T00:00:00", + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", "ShipVia": 3, - "Freight": 11.08, - "ShipName": "Vins et alcools Chevalier", - "ShipAddress": "59 rue de Abbaye", - "ShipCity": "Reims", - "ShipPostalCode": 51100, - "ShipCountry": "France", + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 6, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 18, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + }, { - "OrderID": 10740, + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10464, "EmployeeID": 4, - "OrderDate": "1997-11-13T00:00:00", - "RequiredDate": "1997-12-11T00:00:00", - "ShippedDate": "1997-11-25T00:00:00", + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 81.88, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, "Discount": 0.2 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, "Discount": 0.2 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 14, - "Discount": 0.2 + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10741, - "EmployeeID": 4, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-11-28T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", "ShipVia": 3, - "Freight": 10.96, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 27000, - "ShipCountry": "UK", + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 44, + "UnitPrice": 15.5, "Quantity": 15, - "Discount": 0.2 + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10742, - "EmployeeID": 3, - "OrderDate": "1997-11-14T00:00:00", - "RequiredDate": "1997-12-12T00:00:00", - "ShippedDate": "1997-11-18T00:00:00", + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", "ShipVia": 3, - "Freight": 243.73, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 17000, - "ShipCountry": "Canada", + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10743, + "OrderID": 10604, "EmployeeID": 1, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 40000, - "ShipCountry": "UK", + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 28, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10744, - "EmployeeID": 6, - "OrderDate": "1997-11-17T00:00:00", - "RequiredDate": "1997-12-15T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 69.19, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 50, - "Discount": 0.2 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10745, - "EmployeeID": 9, - "OrderDate": "1997-11-18T00:00:00", - "RequiredDate": "1997-12-16T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 1, - "Freight": 3.52, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 24, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 45, - "Discount": 0 - }, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 7, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 } ] } ] }, { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", + "CustomerID": "BONAP", + "Company": "Bon app", + "ContactName": "Laurence Lebihan", "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", "Orders": [ { - "OrderID": 10746, - "EmployeeID": 1, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-21T00:00:00", - "ShipVia": 3, - "Freight": 31.43, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 28, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 9, - "Discount": 0 + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 43, + "UnitPrice": 36.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 10747, - "EmployeeID": 6, - "OrderDate": "1997-11-19T00:00:00", - "RequiredDate": "1997-12-17T00:00:00", - "ShippedDate": "1997-11-26T00:00:00", + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", "ShipVia": 1, - "Freight": 117.33, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 96.04, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10748, - "EmployeeID": 3, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 1, - "Freight": 232.55, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 44, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 28, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10749, + "OrderID": 10470, "EmployeeID": 4, - "OrderDate": "1997-11-20T00:00:00", - "RequiredDate": "1997-12-18T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", "ShipVia": 2, - "Freight": 61.53, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 30222, - "ShipPostalCode": 50000, - "ShipCountry": "UK", + "Freight": 64.56, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 15, + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 6, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 10750, - "EmployeeID": 9, - "OrderDate": "1997-11-21T00:00:00", - "RequiredDate": "1997-12-19T00:00:00", - "ShippedDate": "1997-11-24T00:00:00", - "ShipVia": 1, - "Freight": 79.3, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 5, + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 40, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, "Discount": 0.16 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10751, - "EmployeeID": 3, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-12-03T00:00:00", - "ShipVia": 3, - "Freight": 130.79, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0.1 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 30, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ + }, { - "OrderID": 10752, + "OrderID": 10663, "EmployeeID": 2, - "OrderDate": "1997-11-24T00:00:00", - "RequiredDate": "1997-12-22T00:00:00", - "ShippedDate": "1997-11-28T00:00:00", - "ShipVia": 3, - "Freight": 1.39, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 3, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 10753, + "OrderID": 10715, "EmployeeID": 3, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", "ShipVia": 1, - "Freight": 7.7, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 63.2, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 4, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 5, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10754, - "EmployeeID": 6, - "OrderDate": "1997-11-25T00:00:00", - "RequiredDate": "1997-12-23T00:00:00", - "ShippedDate": "1997-11-27T00:00:00", - "ShipVia": 3, - "Freight": 2.38, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { "OrderID": 10755, "EmployeeID": 4, @@ -23451,247 +18189,195 @@ "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10756, - "EmployeeID": 8, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-02T00:00:00", + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", "ShipVia": 2, - "Freight": 73.21, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 63.54, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 6, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 20, - "Discount": 0.2 + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10757, - "EmployeeID": 6, - "OrderDate": "1997-11-27T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 1, - "Freight": 8.19, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, - "Discount": 0 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 7, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 30, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, "Discount": 0 }, { "ProductID": 64, "UnitPrice": 33.25, - "Quantity": 24, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10758, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-04T00:00:00", - "ShipVia": 3, - "Freight": 138.17, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 60, - "Discount": 0 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 40, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + }, { - "OrderID": 10759, - "EmployeeID": 3, - "OrderDate": "1997-11-28T00:00:00", - "RequiredDate": "1997-12-26T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", "ShipVia": 3, - "Freight": 11.99, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "Freight": 19.77, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 10, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10760, + "OrderID": 11076, "EmployeeID": 4, - "OrderDate": "1997-12-01T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1997-12-10T00:00:00", - "ShipVia": 1, - "Freight": 155.64, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 43000, - "ShipCountry": "Belgium", + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-08T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 12, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, "Discount": 0.25 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 40, - "Discount": 0 + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, "Discount": 0.25 } ] @@ -23699,4607 +18385,398 @@ ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 20000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", "Orders": [ { - "OrderID": 10761, - "EmployeeID": 5, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", "ShipVia": 2, - "Freight": 18.66, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 18, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 13000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10762, - "EmployeeID": 3, - "OrderDate": "1997-12-02T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 328.74, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 44000, - "ShipCountry": "Sweden", + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 16, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 28, "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 60, - "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ + }, { - "OrderID": 10763, - "EmployeeID": 3, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", - "ShipVia": 3, - "Freight": 37.35, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 21, + "ProductID": 31, "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "Quantity": 42, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 22000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 6, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10764, + "OrderID": 10439, "EmployeeID": 6, - "OrderDate": "1997-12-03T00:00:00", - "RequiredDate": "1997-12-31T00:00:00", - "ShippedDate": "1997-12-08T00:00:00", + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", "ShipVia": 3, - "Freight": 145.45, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 130, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10765, - "EmployeeID": 3, - "OrderDate": "1997-12-04T00:00:00", - "RequiredDate": "1998-01-01T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 3, - "Freight": 42.74, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 80, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10766, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-09T00:00:00", - "ShipVia": 1, - "Freight": 157.55, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 40, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 28000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10767, - "EmployeeID": 4, - "OrderDate": "1997-12-05T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 3, - "Freight": 1.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 22000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10768, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-15T00:00:00", - "ShipVia": 2, - "Freight": 146.32, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 11000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ - { - "OrderID": 10769, - "EmployeeID": 3, - "OrderDate": "1997-12-08T00:00:00", - "RequiredDate": "1998-01-05T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 65.06, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10770, - "EmployeeID": 8, - "OrderDate": "1997-12-09T00:00:00", - "RequiredDate": "1998-01-06T00:00:00", - "ShippedDate": "1997-12-17T00:00:00", - "ShipVia": 3, - "Freight": 5.32, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10771, - "EmployeeID": 9, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 11.19, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ - { - "OrderID": 10772, - "EmployeeID": 3, - "OrderDate": "1997-12-10T00:00:00", - "RequiredDate": "1998-01-07T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 91.28, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10773, - "EmployeeID": 1, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1998-01-08T00:00:00", - "ShippedDate": "1997-12-16T00:00:00", - "ShipVia": 3, - "Freight": 96.43, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 33, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 70, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 7, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 24000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10774, - "EmployeeID": 4, - "OrderDate": "1997-12-11T00:00:00", - "RequiredDate": "1997-12-25T00:00:00", - "ShippedDate": "1997-12-12T00:00:00", - "ShipVia": 1, - "Freight": 48.2, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 2, - "Discount": 0.25 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", - "Orders": [ - { - "OrderID": 10775, - "EmployeeID": 7, - "OrderDate": "1997-12-12T00:00:00", - "RequiredDate": "1998-01-09T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 20.25, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10776, - "EmployeeID": 1, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1998-01-12T00:00:00", - "ShippedDate": "1997-12-18T00:00:00", - "ShipVia": 3, - "Freight": 351.53, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.06 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 12, - "Discount": 0.06 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 27, - "Discount": 0.06 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 120, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10777, - "EmployeeID": 7, - "OrderDate": "1997-12-15T00:00:00", - "RequiredDate": "1997-12-29T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 3.01, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 11000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10778, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 1, - "Freight": 6.79, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ - { - "OrderID": 10779, - "EmployeeID": 3, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1998-01-13T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 2, - "Freight": 58.13, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0 - } - ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10780, - "EmployeeID": 2, - "OrderDate": "1997-12-16T00:00:00", - "RequiredDate": "1997-12-30T00:00:00", - "ShippedDate": "1997-12-25T00:00:00", - "ShipVia": 1, - "Freight": 42.13, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ - { - "OrderID": 10781, - "EmployeeID": 2, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 3, - "Freight": 73.16, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", - "OrderDetails": [ - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.2 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10782, - "EmployeeID": 9, - "OrderDate": "1997-12-17T00:00:00", - "RequiredDate": "1998-01-14T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 1.1, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10783, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-19T00:00:00", - "ShipVia": 2, - "Freight": 124.98, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10784, - "EmployeeID": 4, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-22T00:00:00", - "ShipVia": 3, - "Freight": 70.09, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "GROSR", - "Company": "GROSELLA-Restaurante", - "ContactName": "Manuel Pereira", - "ContactTitle": "Owner", - "Address": "5ª Ave. Los Palos Grandes", - "City": "Caracas", - "Region": "DF", - "PostalCode": 1081, - "Country": "Venezuela", - "Phone": "(2) 283-2951", - "Fax": "(2) 283-3397", - "Orders": [ - { - "OrderID": 10785, - "EmployeeID": 1, - "OrderDate": "1997-12-18T00:00:00", - "RequiredDate": "1998-01-15T00:00:00", - "ShippedDate": "1997-12-24T00:00:00", - "ShipVia": 3, - "Freight": 1.51, - "ShipName": "GROSELLA-Restaurante", - "ShipAddress": "5ª Ave. Los Palos Grandes", - "ShipCity": "Caracas", - "ShipRegion": "DF", - "ShipPostalCode": 1081, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ - { - "OrderID": 10786, - "EmployeeID": 8, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-16T00:00:00", - "ShippedDate": "1997-12-23T00:00:00", - "ShipVia": 1, - "Freight": 110.87, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, - "Discount": 0.2 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 42, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10787, - "EmployeeID": 2, - "OrderDate": "1997-12-19T00:00:00", - "RequiredDate": "1998-01-02T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 249.93, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10788, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 42.7, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "FOLIG", - "Company": "Folies gourmandes", - "ContactName": "Martine Rancé", - "ContactTitle": "Sales Associate", - "Address": "184, chaussée de Tournai", - "City": "Lille", - "PostalCode": 59000, - "Country": "France", - "Phone": "20.16.10.16", - "Fax": "20.16.10.17", - "Orders": [ - { - "OrderID": 10789, - "EmployeeID": 1, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 100.6, - "ShipName": "Folies gourmandes", - "ShipAddress": "184, chaussée de Tournai", - "ShipCity": "Lille", - "ShipPostalCode": 59000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ - { - "OrderID": 10790, - "EmployeeID": 6, - "OrderDate": "1997-12-22T00:00:00", - "RequiredDate": "1998-01-19T00:00:00", - "ShippedDate": "1997-12-26T00:00:00", - "ShipVia": 1, - "Freight": 28.23, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 3, - "Discount": 0.16 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - } - ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ - { - "OrderID": 10791, - "EmployeeID": 6, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-01T00:00:00", - "ShipVia": 2, - "Freight": 16.85, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10792, - "EmployeeID": 1, - "OrderDate": "1997-12-23T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 3, - "Freight": 23.79, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10793, - "EmployeeID": 3, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 3, - "Freight": 4.52, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 32000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, - "Discount": 0 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ - { - "OrderID": 10794, - "EmployeeID": 6, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 1, - "Freight": 21.49, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 15, - "Discount": 0.2 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 6, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10795, - "EmployeeID": 8, - "OrderDate": "1997-12-24T00:00:00", - "RequiredDate": "1998-01-21T00:00:00", - "ShippedDate": "1998-01-20T00:00:00", - "ShipVia": 2, - "Freight": 126.66, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 35, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10796, - "EmployeeID": 3, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 26.52, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 21, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 35, - "Discount": 0.2 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 24, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10797, - "EmployeeID": 7, - "OrderDate": "1997-12-25T00:00:00", - "RequiredDate": "1998-01-22T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 33.35, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 30000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10798, - "EmployeeID": 2, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 1, - "Freight": 2.33, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 60634, - "ShipPostalCode": 40000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10799, - "EmployeeID": 9, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 30.76, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 32000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10800, - "EmployeeID": 1, - "OrderDate": "1997-12-26T00:00:00", - "RequiredDate": "1998-01-23T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 3, - "Freight": 137.44, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 41000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 50, - "Discount": 0.1 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, - "Discount": 0.1 - }, - { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 7, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ - { - "OrderID": 10801, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1997-12-31T00:00:00", - "ShipVia": 2, - "Freight": 97.09, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", - "OrderDetails": [ - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 20, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ - { - "OrderID": 10802, - "EmployeeID": 4, - "OrderDate": "1997-12-29T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-01-02T00:00:00", - "ShipVia": 2, - "Freight": 257.26, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", - "OrderDetails": [ - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 5, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10803, - "EmployeeID": 4, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-06T00:00:00", - "ShipVia": 1, - "Freight": 55.23, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 24, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 40000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10804, - "EmployeeID": 6, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 2, - "Freight": 27.33, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 38000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 36, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 4, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ - { - "OrderID": 10805, - "EmployeeID": 2, - "OrderDate": "1997-12-30T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 237.34, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 10, - "Discount": 0 - } - ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10806, - "EmployeeID": 3, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-05T00:00:00", - "ShipVia": 2, - "Freight": 22.11, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ - { - "OrderID": 10807, - "EmployeeID": 4, - "OrderDate": "1997-12-31T00:00:00", - "RequiredDate": "1998-01-28T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 1, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 10808, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 3, - "Freight": 45.53, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ - { - "OrderID": 10809, - "EmployeeID": 7, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 1, - "Freight": 4.87, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAUGB", - "Company": "Laughing Bacchus Wine Cellars", - "ContactName": "Yoshi Tannamuri", - "ContactTitle": "Marketing Assistant", - "Address": "1900 Oak St.", - "City": "Vancouver", - "Region": "BC", - "PostalCode": 28000, - "Country": "Canada", - "Phone": "(604) 555-3392", - "Fax": "(604) 555-7293", - "Orders": [ - { - "OrderID": 10810, - "EmployeeID": 2, - "OrderDate": "1998-01-01T00:00:00", - "RequiredDate": "1998-01-29T00:00:00", - "ShippedDate": "1998-01-07T00:00:00", - "ShipVia": 3, - "Freight": 4.33, - "ShipName": "Laughing Bacchus Wine Cellars", - "ShipAddress": "2319 Elm St.", - "ShipCity": "Vancouver", - "ShipRegion": "BC", - "ShipPostalCode": 48000, - "ShipCountry": "Canada", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 5, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10811, - "EmployeeID": 8, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-08T00:00:00", - "ShipVia": 1, - "Freight": 31.22, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 18, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ - { - "OrderID": 10812, - "EmployeeID": 5, - "OrderDate": "1998-01-02T00:00:00", - "RequiredDate": "1998-01-30T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 1, - "Freight": 59.78, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 16, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10813, - "EmployeeID": 1, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-09T00:00:00", - "ShipVia": 1, - "Freight": 47.38, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10814, - "EmployeeID": 3, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 130.94, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 48, - "UnitPrice": 12.75, - "Quantity": 8, - "Discount": 0.16 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10815, - "EmployeeID": 2, - "OrderDate": "1998-01-05T00:00:00", - "RequiredDate": "1998-02-02T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 3, - "Freight": 14.62, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 16, - "Discount": 0 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ - { - "OrderID": 10816, - "EmployeeID": 4, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-02-03T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 2, - "Freight": 719.78, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0.06 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10817, - "EmployeeID": 3, - "OrderDate": "1998-01-06T00:00:00", - "RequiredDate": "1998-01-20T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 306.07, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 40, - "Discount": 0.16 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 60, - "Discount": 0.16 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 25, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ - { - "OrderID": 10818, - "EmployeeID": 7, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-12T00:00:00", - "ShipVia": 3, - "Freight": 65.48, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", - "OrderDetails": [ - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ - { - "OrderID": 10819, - "EmployeeID": 2, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 19.76, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 7, - "Discount": 0 - }, - { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10820, - "EmployeeID": 3, - "OrderDate": "1998-01-07T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 37.52, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ - { - "OrderID": 10821, - "EmployeeID": 1, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-15T00:00:00", - "ShipVia": 1, - "Freight": 36.68, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TRAIH", - "Company": "Trail's Head Gourmet Provisioners", - "ContactName": "Helvetius Nagy", - "ContactTitle": "Sales Associate", - "Address": "722 DaVinci Blvd.", - "City": "Kirkland", - "Region": "WA", - "PostalCode": 98034, - "Country": "USA", - "Phone": "(206) 555-8257", - "Fax": "(206) 555-2174", - "Orders": [ - { - "OrderID": 10822, - "EmployeeID": 6, - "OrderDate": "1998-01-08T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-01-16T00:00:00", - "ShipVia": 3, - "Freight": 7, - "ShipName": "Trail's Head Gourmet Provisioners", - "ShipAddress": "722 DaVinci Blvd.", - "ShipCity": "Kirkland", - "ShipRegion": "WA", - "ShipPostalCode": 98034, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 6, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ - { - "OrderID": 10823, - "EmployeeID": 5, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-13T00:00:00", - "ShipVia": 2, - "Freight": 163.97, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.1 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 29000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ - { - "OrderID": 10824, - "EmployeeID": 8, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 1.23, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 39000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ - { - "OrderID": 10825, - "EmployeeID": 1, - "OrderDate": "1998-01-09T00:00:00", - "RequiredDate": "1998-02-06T00:00:00", - "ShippedDate": "1998-01-14T00:00:00", - "ShipVia": 1, - "Freight": 79.25, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BLONP", - "Company": "Blondesddsl père et fils", - "ContactName": "Frédérique Citeaux", - "ContactTitle": "Marketing Manager", - "Address": "24, place Kléber", - "City": "Strasbourg", - "PostalCode": 67000, - "Country": "France", - "Phone": "88.60.15.31", - "Fax": "88.60.15.32", - "Orders": [ - { - "OrderID": 10826, - "EmployeeID": 6, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 1, - "Freight": 7.09, - "ShipName": "Blondel père et fils", - "ShipAddress": "24, place Kléber", - "ShipCity": "Strasbourg", - "ShipPostalCode": 67000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ - { - "OrderID": 10827, - "EmployeeID": 1, - "OrderDate": "1998-01-12T00:00:00", - "RequiredDate": "1998-01-26T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", - "ShipVia": 2, - "Freight": 63.54, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ - { - "OrderID": 10828, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-01-27T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 90.85, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", - "OrderDetails": [ - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 2, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 24000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ - { - "OrderID": 10829, - "EmployeeID": 9, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-10T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 1, - "Freight": 154.72, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 50889, - "ShipPostalCode": 16000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - } - ] - } - ], - "Fax": "(198) 555-8888" - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10830, - "EmployeeID": 4, - "OrderDate": "1998-01-13T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 2, - "Freight": 81.83, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 28, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 24, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ - { - "OrderID": 10831, - "EmployeeID": 3, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 72.19, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", - "OrderDetails": [ - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 9, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ - { - "OrderID": 10832, - "EmployeeID": 2, - "OrderDate": "1998-01-14T00:00:00", - "RequiredDate": "1998-02-11T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 2, - "Freight": 43.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 3, - "Discount": 0.2 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 16, - "Discount": 0.2 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 10833, - "EmployeeID": 6, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 2, - "Freight": 71.49, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 9, - "Discount": 0.1 - }, - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 9, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10834, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-19T00:00:00", - "ShipVia": 3, - "Freight": 29.78, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 8, - "Discount": 0.06 - }, - { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 20, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ - { - "OrderID": 10835, - "EmployeeID": 1, - "OrderDate": "1998-01-15T00:00:00", - "RequiredDate": "1998-02-12T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 3, - "Freight": 69.53, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10836, - "EmployeeID": 7, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-21T00:00:00", - "ShipVia": 1, - "Freight": 411.88, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 52, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 60, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 47000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ - { - "OrderID": 10837, - "EmployeeID": 9, - "OrderDate": "1998-01-16T00:00:00", - "RequiredDate": "1998-02-13T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 13.32, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 17000, - "ShipCountry": "Sweden", - "OrderDetails": [ - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 6, - "Discount": 0 - }, - { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 25, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 40, - "Discount": 0.25 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 21, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10838, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 59.28, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0.25 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "TRADH", - "Company": "Tradição Hipermercados", - "ContactName": "Anabela Domingues", - "ContactTitle": "Sales Representative", - "Address": "Av. Inês de Castro, 414", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5634, - "Country": "Brazil", - "Phone": "(11) 555-2167", - "Fax": "(11) 555-2168", - "Orders": [ - { - "OrderID": 10839, - "EmployeeID": 3, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-01-22T00:00:00", - "ShipVia": 3, - "Freight": 35.43, - "ShipName": "Tradiçao Hipermercados", - "ShipAddress": "Av. Inês de Castro, 414", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5634, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 15, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 10840, - "EmployeeID": 4, - "OrderDate": "1998-01-19T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", - "ShipVia": 2, - "Freight": 2.71, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 6, - "Discount": 0.2 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 22000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10841, - "EmployeeID": 5, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 424.3, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 27000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 16, - "Discount": 0 - }, - { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10842, - "EmployeeID": 1, - "OrderDate": "1998-01-20T00:00:00", - "RequiredDate": "1998-02-17T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 3, - "Freight": 54.42, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", - "OrderDetails": [ - { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 5, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 12, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10843, - "EmployeeID": 4, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 9.26, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 4, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ - { - "OrderID": 10844, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-18T00:00:00", - "ShippedDate": "1998-01-26T00:00:00", - "ShipVia": 2, - "Freight": 25.22, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 35, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ - { - "OrderID": 10845, - "EmployeeID": 8, - "OrderDate": "1998-01-21T00:00:00", - "RequiredDate": "1998-02-04T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 212.98, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.1 - }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 42, - "Discount": 0.1 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 60, - "Discount": 0.1 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 48, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 15000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ - { - "OrderID": 10846, - "EmployeeID": 2, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-01-23T00:00:00", - "ShipVia": 3, - "Freight": 56.46, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 15000, - "ShipCountry": "Belgium", - "OrderDetails": [ - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ - { - "OrderID": 10847, - "EmployeeID": 4, - "OrderDate": "1998-01-22T00:00:00", - "RequiredDate": "1998-02-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 3, - "Freight": 487.57, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.2 - }, - { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0.2 - }, - { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 60, - "Discount": 0.2 - }, - { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 36, - "Discount": 0.2 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 45, - "Discount": 0.2 - }, - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 55, - "Discount": 0.2 - } - ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "CONSH", - "Company": "Consolidated Holdings", - "ContactName": "Elizabeth Brown", - "ContactTitle": "Sales Representative", - "Address": "Berkeley Gardens 12 Brewery", - "City": "London", - "PostalCode": 43000, - "Country": "UK", - "Phone": "(171) 555-2282", - "Fax": "(171) 555-9199", - "Orders": [ - { - "OrderID": 10848, - "EmployeeID": 7, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-29T00:00:00", - "ShipVia": 2, - "Freight": 38.24, - "ShipName": "Consolidated Holdings", - "ShipAddress": "Berkeley Gardens 12 Brewery", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 9, - "UnitPrice": 97, - "Quantity": 3, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ - { - "OrderID": 10849, - "EmployeeID": 9, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-02-20T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 2, - "Freight": 0.56, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 49, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 18, - "Discount": 0.16 - } - ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "VICTE", - "Company": "Victuailles en stock", - "ContactName": "Mary Saveley", - "ContactTitle": "Sales Agent", - "Address": "2, rue du Commerce", - "City": "Lyon", - "PostalCode": 69004, - "Country": "France", - "Phone": "78.32.54.86", - "Fax": "78.32.54.87", - "Orders": [ - { - "OrderID": 10850, - "EmployeeID": 1, - "OrderDate": "1998-01-23T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 49.19, - "ShipName": "Victuailles en stock", - "ShipAddress": "2, rue du Commerce", - "ShipCity": "Lyon", - "ShipPostalCode": 69004, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0.16 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 4, - "Discount": 0.16 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ - { - "OrderID": 10851, - "EmployeeID": 5, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-23T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 1, - "Freight": 160.55, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 5, - "Discount": 0.06 - }, - { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.06 - }, - { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 10, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 42, - "Discount": 0.06 - } - ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ - { - "OrderID": 10852, - "EmployeeID": 8, - "OrderDate": "1998-01-26T00:00:00", - "RequiredDate": "1998-02-09T00:00:00", - "ShippedDate": "1998-01-30T00:00:00", - "ShipVia": 1, - "Freight": 174.05, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 15, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, + "ProductID": 64, + "UnitPrice": 26.6, "Quantity": 6, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 50, + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10853, - "EmployeeID": 9, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 2, - "Freight": 53.83, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10854, - "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-05T00:00:00", + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", "ShipVia": 2, - "Freight": 100.22, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 21000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 100, - "Discount": 0.16 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10855, + "OrderID": 10570, "EmployeeID": 3, - "OrderDate": "1998-01-27T00:00:00", - "RequiredDate": "1998-02-24T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 1, - "Freight": 170.97, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", - "OrderDetails": [ - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 50, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 14, - "Discount": 0 + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 }, { "ProductID": 56, "UnitPrice": 38, - "Quantity": 24, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 15, - "Discount": 0.16 + "Quantity": 60, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "ANTON", - "Company": "Antonio Moreno Taquería", - "ContactName": "Antonio Moreno", - "ContactTitle": "Owner", - "Address": "Mataderos 2312", - "City": "México D.F.", - "PostalCode": 5023, - "Country": "Mexico", - "Phone": "(5) 555-3932", - "Orders": [ + }, { - "OrderID": 10856, - "EmployeeID": 3, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 58.43, - "ShipName": "Antonio Moreno Taquería", - "ShipAddress": "Mataderos 2312", - "ShipCity": "México D.F.", - "ShipPostalCode": 5023, - "ShipCountry": "Mexico", + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 1, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 20, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 } ] - } - ], - "Fax": "(5) 555-3932" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10857, - "EmployeeID": 8, - "OrderDate": "1998-01-28T00:00:00", - "RequiredDate": "1998-02-25T00:00:00", - "ShippedDate": "1998-02-06T00:00:00", + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", "ShipVia": 2, - "Freight": 188.85, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 3, - "UnitPrice": 10, + "ProductID": 16, + "UnitPrice": 17.45, "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 35, - "Discount": 0.25 + "Discount": 0.06 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ - { - "OrderID": 10858, - "EmployeeID": 2, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-03T00:00:00", - "ShipVia": 1, - "Freight": 52.51, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 5, - "Discount": 0 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 10, - "Discount": 0 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, - "Discount": 0 + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10859, + "OrderID": 10618, "EmployeeID": 1, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", - "ShipVia": 2, - "Freight": 76.1, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 30, - "Discount": 0.25 - } - ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, { - "OrderID": 10860, - "EmployeeID": 3, - "OrderDate": "1998-01-29T00:00:00", - "RequiredDate": "1998-02-26T00:00:00", - "ShippedDate": "1998-02-04T00:00:00", - "ShipVia": 3, - "Freight": 19.26, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 3, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] @@ -28307,2480 +18784,2081 @@ ] }, { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", "Orders": [ { - "OrderID": 10861, - "EmployeeID": 4, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-02-27T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", "ShipVia": 2, - "Freight": 14.93, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 42, - "Discount": 0 - }, - { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 20, - "Discount": 0 - }, + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + }, + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 35, - "Discount": 0 - }, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 3, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10862, - "EmployeeID": 8, - "OrderDate": "1998-01-30T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-02T00:00:00", + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", "ShipVia": 2, - "Freight": 53.23, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 8, - "Discount": 0 + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10863, - "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-17T00:00:00", + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", "ShipVia": 2, - "Freight": 30.26, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 } ] } - ] + ], + "Fax": "(1) 356-5634" }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 31000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", "Orders": [ { - "OrderID": 10864, + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10417, "EmployeeID": 4, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-03-02T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 2, - "Freight": 3.04, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10865, + "OrderID": 10556, "EmployeeID": 2, - "OrderDate": "1998-02-02T00:00:00", - "RequiredDate": "1998-02-16T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", "ShipVia": 1, - "Freight": 348.14, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 80, - "Discount": 0.06 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 48000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10866, - "EmployeeID": 5, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-03T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", "ShipVia": 1, - "Freight": 109.11, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 37000, - "ShipCountry": "Sweden", + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, + "ProductID": 36, "UnitPrice": 19, - "Quantity": 21, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, "Discount": 0.25 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 6, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, "Discount": 0.25 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 40, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10867, - "EmployeeID": 6, - "OrderDate": "1998-02-03T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 1, - "Freight": 1.93, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShippedDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 3, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 } ] } ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", + "Address": "Rua Orós, 92", "City": "Sao Paulo", "Region": "SP", - "PostalCode": 5487, + "PostalCode": 5442, "Country": "Brazil", - "Phone": "(11) 555-1189", + "Phone": "(11) 555-9857", "Orders": [ { - "OrderID": 10868, - "EmployeeID": 7, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 2, - "Freight": 191.27, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", "ShipCity": "Sao Paulo", "ShipRegion": "SP", - "ShipPostalCode": 5487, + "ShipPostalCode": 5442, "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 42, - "Discount": 0.1 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "SEVES", - "Company": "Seven Seas Imports", - "ContactName": "Hari Kumar", - "ContactTitle": "Sales Manager", - "Address": "90 Wadhurst Rd.", - "City": "London", - "PostalCode": 29000, - "Country": "UK", - "Phone": "(171) 555-1717", - "Fax": "(171) 555-5646", - "Orders": [ - { - "OrderID": 10869, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", - "ShipVia": 1, - "Freight": 143.28, - "ShipName": "Seven Seas Imports", - "ShipAddress": "90 Wadhurst Rd.", - "ShipCity": "London", - "ShipPostalCode": 48000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 11, - "UnitPrice": 21, + "ProductID": 25, + "UnitPrice": 11.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 39, + "UnitPrice": 14.4, "Quantity": 50, - "Discount": 0 + "Discount": 0.16 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ - { - "OrderID": 10870, - "EmployeeID": 5, - "OrderDate": "1998-02-04T00:00:00", - "RequiredDate": "1998-03-04T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 3, - "Freight": 12.04, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", - "OrderDetails": [ - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 3, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 2, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10871, + "OrderID": 10386, "EmployeeID": 9, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-10T00:00:00", - "ShipVia": 2, - "Freight": 112.27, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 12, + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, "Discount": 0.06 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10872, - "EmployeeID": 5, - "OrderDate": "1998-02-05T00:00:00", - "RequiredDate": "1998-03-05T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", "ShipVia": 2, - "Freight": 175.32, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 24, + "UnitPrice": 4.5, "Quantity": 10, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10873, - "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-09T00:00:00", + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", "ShipVia": 1, - "Freight": 0.82, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 3, - "Discount": 0 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10874, + "OrderID": 10650, "EmployeeID": 5, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-02-11T00:00:00", - "ShipVia": 2, - "Freight": 19.58, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 34000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10875, + "OrderID": 10725, "EmployeeID": 4, - "OrderDate": "1998-02-06T00:00:00", - "RequiredDate": "1998-03-06T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 2, - "Freight": 32.37, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 18000, - "ShipCountry": "Sweden", + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 25, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 21, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 15, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, "Discount": 0 } ] } - ] + ], + "Fax": "(11) 555-9857" }, { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, + "CustomerID": "LAMAI", + "Company": "La maison de Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", "Orders": [ { - "OrderID": 10876, - "EmployeeID": 7, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 60.42, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 21, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, - "Discount": 0 + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", - "Orders": [ + }, { - "OrderID": 10877, - "EmployeeID": 1, - "OrderDate": "1998-02-09T00:00:00", - "RequiredDate": "1998-03-09T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", "ShipVia": 1, - "Freight": 38.06, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 19.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 25, - "Discount": 0 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10878, - "EmployeeID": 4, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 1, - "Freight": 46.69, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 0.45, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10879, + "OrderID": 10413, "EmployeeID": 3, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-10T00:00:00", - "ShippedDate": "1998-02-12T00:00:00", - "ShipVia": 3, - "Freight": 8.5, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + }, + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, + "ProductID": 55, + "UnitPrice": 19.2, "Quantity": 10, - "Discount": 0 + "Discount": 0.25 }, { "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 43000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10880, - "EmployeeID": 7, - "OrderDate": "1998-02-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 88.01, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 15000, - "ShipCountry": "Sweden", + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 30, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 50, + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10881, + "OrderID": 10493, "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 2.84, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 73, - "UnitPrice": 15, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, "Quantity": 10, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10882, - "EmployeeID": 4, - "OrderDate": "1998-02-11T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 23.1, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 25, - "Discount": 0 + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 20, - "Discount": 0.16 - }, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 32, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 10883, + "OrderID": 10631, "EmployeeID": 8, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 3, - "Freight": 0.53, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 75, + "UnitPrice": 7.75, "Quantity": 8, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LETSS", - "Company": "Let's Stop N Shop", - "ContactName": "Jaime Yorres", - "ContactTitle": "Owner", - "Address": "87 Polk St. Suite 5", - "City": "San Francisco", - "Region": "CA", - "PostalCode": 94117, - "Country": "USA", - "Phone": "(415) 555-5938", - "Orders": [ + }, { - "OrderID": 10884, - "EmployeeID": 4, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-13T00:00:00", - "ShipVia": 2, - "Freight": 90.97, - "ShipName": "Let's Stop N Shop", - "ShipAddress": "87 Polk St. Suite 5", - "ShipCity": "San Francisco", - "ShipRegion": "CA", - "ShipPostalCode": 94117, - "ShipCountry": "USA", + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 21, + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, "Discount": 0.06 + } + ] + }, + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 }, { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 12, - "Discount": 0.06 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 } ] - } - ], - "Fax": "(415) 555-5938" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 10000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10885, - "EmployeeID": 6, - "OrderDate": "1998-02-12T00:00:00", - "RequiredDate": "1998-03-12T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", "ShipVia": 3, - "Freight": 5.64, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 40000, - "ShipCountry": "Belgium", + "Freight": 68.26, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, - "Discount": 0 - }, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-09-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison de Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 25, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 } ] } ] }, { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", "Orders": [ { - "OrderID": 10886, - "EmployeeID": 1, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 4.99, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 70, - "Discount": 0 - }, - { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 35, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 40, - "Discount": 0 + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", - "Orders": [ + }, { - "OrderID": 10887, - "EmployeeID": 8, - "OrderDate": "1998-02-13T00:00:00", - "RequiredDate": "1998-03-13T00:00:00", - "ShippedDate": "1998-02-16T00:00:00", + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", "ShipVia": 3, - "Freight": 1.25, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 5, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10888, - "EmployeeID": 1, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", "ShipVia": 2, - "Freight": 51.87, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 18, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10889, - "EmployeeID": 9, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 3, - "Freight": 280.61, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0 + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DUMON", - "Company": "Du monde entier", - "ContactName": "Janine Labrune", - "ContactTitle": "Owner", - "Address": "67, rue des Cinquante Otages", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.67.88.88", - "Fax": "40.67.89.89", - "Orders": [ + }, { - "OrderID": 10890, - "EmployeeID": 7, - "OrderDate": "1998-02-16T00:00:00", - "RequiredDate": "1998-03-16T00:00:00", - "ShippedDate": "1998-02-18T00:00:00", - "ShipVia": 1, - "Freight": 32.76, - "ShipName": "Du monde entier", - "ShipAddress": "67, rue des Cinquante Otages", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { "ProductID": 17, "UnitPrice": 39, - "Quantity": 15, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 10, + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 14, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", - "Orders": [ + }, { - "OrderID": 10891, + "OrderID": 10597, "EmployeeID": 7, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 20.37, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, - "Discount": 0.06 + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10892, - "EmployeeID": 4, - "OrderDate": "1998-02-17T00:00:00", - "RequiredDate": "1998-03-17T00:00:00", - "ShippedDate": "1998-02-19T00:00:00", - "ShipVia": 2, - "Freight": 120.27, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 10893, - "EmployeeID": 9, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 2, - "Freight": 77.78, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, - "ShipCountry": "Germany", + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 24, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 35, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 20, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10894, - "EmployeeID": 1, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-20T00:00:00", - "ShipVia": 1, - "Freight": 116.13, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 28, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 120, - "Discount": 0.06 + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", "Orders": [ { - "OrderID": 10895, - "EmployeeID": 3, - "OrderDate": "1998-02-18T00:00:00", - "RequiredDate": "1998-03-18T00:00:00", - "ShippedDate": "1998-02-23T00:00:00", - "ShipVia": 1, - "Freight": 162.75, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 31000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 110, + "UnitPrice": 3.6, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 45, + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 19000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 91, + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 100, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 11000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10896, - "EmployeeID": 7, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 32.45, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 28000, - "ShipCountry": "Belgium", + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 45, - "UnitPrice": 9.5, + "ProductID": 48, + "UnitPrice": 10.2, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 16, - "Discount": 0 + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10897, - "EmployeeID": 3, - "OrderDate": "1998-02-19T00:00:00", - "RequiredDate": "1998-03-19T00:00:00", - "ShippedDate": "1998-02-25T00:00:00", + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", "ShipVia": 2, - "Freight": 603.54, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 80, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, "Discount": 0 }, { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 36, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10898, + "OrderID": 10707, "EmployeeID": 4, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 1.27, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10899, - "EmployeeID": 5, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 1.21, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 8, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10900, + "OrderID": 10743, "EmployeeID": 1, - "OrderDate": "1998-02-20T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", "ShipVia": 2, - "Freight": 1.66, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 40000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, - "Discount": 0.25 + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10901, - "EmployeeID": 4, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-02-26T00:00:00", - "ShipVia": 1, - "Freight": 62.09, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 }, { "ProductID": 71, "UnitPrice": 21.5, - "Quantity": 30, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 39000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10902, - "EmployeeID": 1, - "OrderDate": "1998-02-23T00:00:00", - "RequiredDate": "1998-03-23T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 1, - "Freight": 44.15, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 6, - "Discount": 0.16 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10903, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 36.71, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 10904, - "EmployeeID": 3, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", - "ShipVia": 3, - "Freight": 162.95, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 35, + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10905, + "OrderID": 10953, "EmployeeID": 9, - "OrderDate": "1998-02-24T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", "ShipVia": 2, - "Freight": 13.72, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10906, - "EmployeeID": 4, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-11T00:00:00", - "ShippedDate": "1998-03-03T00:00:00", - "ShipVia": 3, - "Freight": 26.29, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 20000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 31, + "UnitPrice": 12.5, "Quantity": 15, "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", "Orders": [ { - "OrderID": 10907, - "EmployeeID": 6, - "OrderDate": "1998-02-25T00:00:00", - "RequiredDate": "1998-03-25T00:00:00", - "ShippedDate": "1998-02-27T00:00:00", + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", "ShipVia": 3, - "Freight": 9.19, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 14, - "Discount": 0 + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10908, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-06T00:00:00", - "ShipVia": 2, - "Freight": 32.96, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 28, + "UnitPrice": 36.4, "Quantity": 20, - "Discount": 0.06 + "Discount": 0.16 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 14, - "Discount": 0.06 + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 10909, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-10T00:00:00", - "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 43000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 12, - "Discount": 0 + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 }, { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 15, - "Discount": 0 + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 5, + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 10910, - "EmployeeID": 1, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 3, - "Freight": 38.11, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 10, - "Discount": 0 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 5, + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 10911, - "EmployeeID": 3, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", - "ShipVia": 1, - "Freight": 38.19, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, { "ProductID": 17, "UnitPrice": 39, - "Quantity": 12, - "Discount": 0 + "Quantity": 25, + "Discount": 0.1 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", - "Orders": [ + }, { - "OrderID": 10912, - "EmployeeID": 2, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", "ShipVia": 2, - "Freight": 580.91, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 29000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 }, { - "ProductID": 29, - "UnitPrice": 123.79, + "ProductID": 36, + "UnitPrice": 19, "Quantity": 60, - "Discount": 0.25 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10913, - "EmployeeID": 4, - "OrderDate": "1998-02-26T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", - "ShipVia": 1, - "Freight": 33.05, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 40, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 15, - "Discount": 0 + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 } ] }, { - "OrderID": 10914, + "OrderID": 10804, "EmployeeID": 6, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", - "ShipVia": 1, - "Freight": 21.19, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 25, - "Discount": 0 - } - ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ - { - "OrderID": 10915, - "EmployeeID": 2, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-02T00:00:00", + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 2, - "Freight": 3.51, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 10, + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, - "Discount": 0 + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { - "OrderID": 10916, - "EmployeeID": 1, - "OrderDate": "1998-02-27T00:00:00", - "RequiredDate": "1998-03-27T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", - "ShipVia": 2, - "Freight": 63.77, - "ShipName": "Rancho grande", - "ShipAddress": "Av. del Libertador 900", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 6, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, "Quantity": 20, "Discount": 0 } @@ -30789,172 +20867,169 @@ ] }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", "Orders": [ { - "OrderID": 10917, + "OrderID": 10363, "EmployeeID": 4, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 2, - "Freight": 8.29, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 1, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 10, + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 32000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10918, + "OrderID": 10391, "EmployeeID": 3, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", "ShipVia": 3, - "Freight": 48.83, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 45000, - "ShipCountry": "Canada", + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10919, - "EmployeeID": 2, - "OrderDate": "1998-03-02T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-04T00:00:00", + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", "ShipVia": 2, - "Freight": 19.8, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 24, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 24, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 41000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ + }, { - "OrderID": 10920, - "EmployeeID": 4, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", "ShipVia": 2, - "Freight": 29.61, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 35000, - "ShipCountry": "UK", + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 24, + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, "Discount": 0 } ] @@ -30962,327 +21037,267 @@ ] }, { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", "Orders": [ { - "OrderID": 10921, + "OrderID": 10364, "EmployeeID": 1, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-09T00:00:00", + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", "ShipVia": 1, - "Freight": 176.48, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 10000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10922, - "EmployeeID": 5, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-03-31T00:00:00", - "ShippedDate": "1998-03-05T00:00:00", + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", "ShipVia": 3, - "Freight": 62.74, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 25000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 15, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 35, + "UnitPrice": 14.4, "Quantity": 35, "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 10923, + "OrderID": 10532, "EmployeeID": 7, - "OrderDate": "1998-03-03T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", "ShipVia": 3, - "Freight": 68.26, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 10, - "Discount": 0.2 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, + "ProductID": 66, + "UnitPrice": 17, "Quantity": 24, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BERGS", - "Company": "Berglunds snabbköp", - "ContactName": "Christina Berglund", - "ContactTitle": "Order Administrator", - "Address": "Berguvsvägen 8", - "City": "Luleå", - "PostalCode": 28000, - "Country": "Sweden", - "Phone": "0921-12 34 65", - "Fax": "0921-12 34 67", - "Orders": [ + }, { - "OrderID": 10924, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 2, - "Freight": 151.52, - "ShipName": "Berglunds snabbköp", - "ShipAddress": "Berguvsvägen 8", - "ShipCity": "Luleå", - "ShipPostalCode": 35000, - "ShipCountry": "Sweden", + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 24000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 20, - "Discount": 0.1 - }, - { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 6, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 10925, - "EmployeeID": 3, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", "ShipVia": 1, - "Freight": 2.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 32000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 12, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ANATR", - "Company": "Ana Trujillo Emparedados y helados", - "ContactName": "Ana Trujillo", - "ContactTitle": "Owner", - "Address": "Avda. de la Constitución 2222", - "City": "México D.F.", - "PostalCode": 5021, - "Country": "Mexico", - "Phone": "(5) 555-4729", - "Fax": "(5) 555-3745", - "Orders": [ + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + }, { - "OrderID": 10926, + "OrderID": 11024, "EmployeeID": 4, - "OrderDate": "1998-03-04T00:00:00", - "RequiredDate": "1998-04-01T00:00:00", - "ShippedDate": "1998-03-11T00:00:00", - "ShipVia": 3, - "Freight": 39.92, - "ShipName": "Ana Trujillo Emparedados y helados", - "ShipAddress": "Avda. de la Constitución 2222", - "ShipCity": "México D.F.", - "ShipPostalCode": 5021, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 23000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 2, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 7, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 10, + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", - "Orders": [ + }, { - "OrderID": 10927, - "EmployeeID": 4, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 19.79, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 5, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 17000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 } ] @@ -31290,837 +21305,693 @@ ] }, { - "CustomerID": "GALED", - "Company": "Galería del gastrónomo", - "ContactName": "Eduardo Saavedra", - "ContactTitle": "Marketing Manager", - "Address": "Rambla de Cataluña, 23", - "City": "Barcelona", - "PostalCode": 8022, - "Country": "Spain", - "Phone": "(93) 203 4560", - "Fax": "(93) 203 4561", + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", "Orders": [ { - "OrderID": 10928, - "EmployeeID": 1, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 1, - "Freight": 1.36, - "ShipName": "Galería del gastronómo", - "ShipAddress": "Rambla de Cataluña, 23", - "ShipCity": "Barcelona", - "ShipPostalCode": 8022, - "ShipCountry": "Spain", + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 5, + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, "Discount": 0 + } + ] + }, + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 5, - "Discount": 0 + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 10929, - "EmployeeID": 6, - "OrderDate": "1998-03-05T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", "ShipVia": 1, - "Freight": 33.93, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 60, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 49, - "Discount": 0 + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 }, { - "ProductID": 77, - "UnitPrice": 13, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, - "Discount": 0 + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 14000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 10930, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", "ShipVia": 3, - "Freight": 15.55, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 17000, - "ShipCountry": "Belgium", + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 36, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, - "Quantity": 25, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, + "ProductID": 53, + "UnitPrice": 32.8, "Quantity": 25, - "Discount": 0.2 - }, - { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 30, - "Discount": 0.2 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10931, - "EmployeeID": 4, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-03-20T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 2, - "Freight": 13.6, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 42, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, "Discount": 0.16 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 30, - "Discount": 0 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10932, - "EmployeeID": 8, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", - "ShipVia": 1, - "Freight": 134.64, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 33, + "UnitPrice": 2.5, "Quantity": 30, - "Discount": 0.1 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 14, - "Discount": 0.1 + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 16, + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 30, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ISLAT", - "Company": "Island Trading", - "ContactName": "Helen Bennett", - "ContactTitle": "Marketing Manager", - "Address": "Garden House Crowther Way", - "City": "Cowes", - "Region": "Northeast", - "PostalCode": 27000, - "Country": "UK", - "Phone": "(198) 555-8888", - "Orders": [ + }, { - "OrderID": 10933, - "EmployeeID": 6, - "OrderDate": "1998-03-06T00:00:00", - "RequiredDate": "1998-04-03T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 3, - "Freight": 54.15, - "ShipName": "Island Trading", - "ShipAddress": "Garden House Crowther Way", - "ShipCity": "Cowes", - "ShipRegion": 40624, - "ShipPostalCode": 44000, - "ShipCountry": "UK", + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 2, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 30, + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] } ], - "Fax": "(198) 555-8888" + "Fax": "(5) 555-3932" }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", - "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, - "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", "Orders": [ { - "OrderID": 10934, - "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-12T00:00:00", - "ShipVia": 3, - "Freight": 32.01, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, - "ShipCountry": "Germany", + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WELLI", - "Company": "Wellington Importadora", - "ContactName": "Paula Parente", - "ContactTitle": "Sales Manager", - "Address": "Rua do Mercado, 12", - "City": "Resende", - "Region": "SP", - "PostalCode": 8737, - "Country": "Brazil", - "Phone": "(14) 555-8122", - "Fax": "(14) 555-8123", - "Orders": [ + }, { - "OrderID": 10935, + "OrderID": 10426, "EmployeeID": 4, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 47.59, - "ShipName": "Wellington Importadora", - "ShipAddress": "Rua do Mercado, 12", - "ShipCity": "Resende", - "ShipRegion": "SP", - "ShipPostalCode": 8737, - "ShipCountry": "Brazil", + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 21, + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 4, - "Discount": 0.25 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 8, - "Discount": 0.25 + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 10936, + "OrderID": 10568, "EmployeeID": 3, - "OrderDate": "1998-03-09T00:00:00", - "RequiredDate": "1998-04-06T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 2, - "Freight": 33.68, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 10937, - "EmployeeID": 7, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-03-24T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", "ShipVia": 3, - "Freight": 31.51, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 34, + "ProductID": 25, "UnitPrice": 14, - "Quantity": 20, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10938, - "EmployeeID": 3, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 31.89, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 24, - "Discount": 0.25 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 49, - "Discount": 0.25 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", "Orders": [ { - "OrderID": 10939, - "EmployeeID": 2, - "OrderDate": "1998-03-10T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 2, - "Freight": 76.33, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 40, - "Discount": 0.16 + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 10940, + "OrderID": 10399, "EmployeeID": 8, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", "ShipVia": 3, - "Freight": 19.77, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, - "ShipCountry": "France", + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 8, + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10941, - "EmployeeID": 7, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 400.81, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 44, - "Discount": 0.25 + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, "Quantity": 30, - "Discount": 0.25 + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + }, + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 80, - "Discount": 0.25 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, + "ProductID": 54, + "UnitPrice": 7.45, "Quantity": 50, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 10942, - "EmployeeID": 9, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", - "ShipVia": 3, - "Freight": 17.95, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 28, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 15000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10943, + "OrderID": 10688, "EmployeeID": 4, - "OrderDate": "1998-03-11T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", "ShipVia": 2, - "Freight": 2.17, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 12000, - "ShipCountry": "UK", + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 15, - "Discount": 0 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 }, { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 21, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 15, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 44000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10944, + "OrderID": 10744, "EmployeeID": 6, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-03-26T00:00:00", - "ShippedDate": "1998-03-13T00:00:00", - "ShipVia": 3, - "Freight": 52.92, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 27000, - "ShipCountry": "Canada", + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 5, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 18, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MORGK", - "Company": "Morgenstern Gesundkost", - "ContactName": "Alexander Feuer", - "ContactTitle": "Marketing Assistant", - "Address": "Heerstr. 22", - "City": "Leipzig", - "PostalCode": 4179, - "Country": "Germany", - "Phone": "0342-023176", - "Orders": [ + }, { - "OrderID": 10945, - "EmployeeID": 4, - "OrderDate": "1998-03-12T00:00:00", - "RequiredDate": "1998-04-09T00:00:00", - "ShippedDate": "1998-03-18T00:00:00", + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 1, - "Freight": 10.22, - "ShipName": "Morgenstern Gesundkost", - "ShipAddress": "Heerstr. 22", - "ShipCity": "Leipzig", - "ShipPostalCode": 4179, - "ShipCountry": "Germany", + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 10, + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, "Discount": 0 } ] - } - ], - "Fax": "0342-023176" - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { "OrderID": 10946, "EmployeeID": 1, @@ -32154,1106 +22025,1060 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", - "PostalCode": 39000, - "Country": "UK", - "Phone": "(171) 555-1212", - "Orders": [ + }, { - "OrderID": 10947, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-16T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 22000, - "ShipCountry": "UK", + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", "OrderDetails": [ { "ProductID": 59, "UnitPrice": 55, - "Quantity": 4, - "Discount": 0 + "Quantity": 18, + "Discount": 0.06 } ] } - ], - "Fax": "(171) 555-1212" + ] }, { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", "Orders": [ { - "OrderID": 10948, - "EmployeeID": 3, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-19T00:00:00", - "ShipVia": 3, - "Freight": 23.39, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 9, - "Discount": 0 + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 38, + "UnitPrice": 210.8, "Quantity": 40, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 17000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10949, + "OrderID": 10487, "EmployeeID": 2, - "OrderDate": "1998-03-13T00:00:00", - "RequiredDate": "1998-04-10T00:00:00", - "ShippedDate": "1998-03-17T00:00:00", - "ShipVia": 3, - "Freight": 74.44, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 34000, - "ShipCountry": "Canada", + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 12, + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 30, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, - "Discount": 0 + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 60, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "MAGAA", - "Company": "Magazzini Alimentari Riuniti", - "ContactName": "Giovanni Rovelli", - "ContactTitle": "Marketing Manager", - "Address": "Via Ludovico il Moro 22", - "City": "Bergamo", - "PostalCode": 24100, - "Country": "Italy", - "Phone": "035-640230", - "Fax": "035-640231", - "Orders": [ + }, { - "OrderID": 10950, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-13T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 2, - "Freight": 2.5, - "ShipName": "Magazzini Alimentari Riuniti", - "ShipAddress": "Via Ludovico il Moro 22", - "ShipCity": "Bergamo", - "ShipPostalCode": 24100, - "ShipCountry": "Italy", + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { "ProductID": 4, "UnitPrice": 22, - "Quantity": 5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", - "Orders": [ + }, { - "OrderID": 10951, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", "ShipVia": 2, - "Freight": 30.85, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, + "ProductID": 30, + "UnitPrice": 25.89, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, + "ProductID": 40, + "UnitPrice": 18.4, "Quantity": 6, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 10952, - "EmployeeID": 1, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", "ShipVia": 1, - "Freight": 40.42, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 16, - "Discount": 0.06 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 }, { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 2, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 } - ] - } - ] - }, - { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", - "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 36000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", - "Orders": [ - { - "OrderID": 10953, - "EmployeeID": 9, - "OrderDate": "1998-03-16T00:00:00", - "RequiredDate": "1998-03-30T00:00:00", - "ShippedDate": "1998-03-25T00:00:00", + ] + }, + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", "ShipVia": 2, - "Freight": 23.72, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 37000, - "ShipCountry": "UK", + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 50, - "Discount": 0.06 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 10954, - "EmployeeID": 5, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", "ShipVia": 1, - "Freight": 27.91, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 25, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, "Discount": 0 - }, - { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 24, - "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 17000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10955, + "OrderID": 10961, "EmployeeID": 8, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-14T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", - "ShipVia": 2, - "Freight": 3.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 20000, - "ShipCountry": "Sweden", + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 12, - "Discount": 0.2 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 10956, - "EmployeeID": 6, - "OrderDate": "1998-03-17T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-03-20T00:00:00", + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-11-01T00:00:00", "ShipVia": 2, - "Freight": 44.65, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 12, - "Discount": 0 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 }, { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 14, - "Discount": 0 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 8, - "Discount": 0 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 } ] } - ] + ], + "Fax": "(11) 555-1189" }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ - { - "OrderID": 10957, - "EmployeeID": 8, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 3, - "Freight": 105.36, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, + "ProductID": 31, + "UnitPrice": 10, "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 40, - "Discount": 0 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 8, + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10958, - "EmployeeID": 7, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-15T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", "ShipVia": 2, - "Freight": 49.56, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 6, + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 5, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 10959, - "EmployeeID": 6, - "OrderDate": "1998-03-18T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", - "ShipVia": 2, - "Freight": 4.98, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10960, - "EmployeeID": 3, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-02T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 1, - "Freight": 2.08, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.25 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 24, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", - "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", - "Orders": [ + }, { - "OrderID": 10961, - "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 1, - "Freight": 104.47, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 6, - "Discount": 0.06 - }, + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 60, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10962, + "OrderID": 10998, "EmployeeID": 8, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-23T00:00:00", + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", "ShipVia": 2, - "Freight": 275.79, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 45, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 77, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, + "ProductID": 74, + "UnitPrice": 10, "Quantity": 20, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 9, - "Discount": 0 - }, - { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 44, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FURIB", - "Company": "Furia Bacalhau e Frutos do Mar", - "ContactName": "Lino Rodriguez", - "ContactTitle": "Sales Manager", - "Address": "Jardim das rosas n. 32", - "City": "Lisboa", - "PostalCode": 1675, - "Country": "Portugal", - "Phone": "(1) 354-2534", - "Fax": "(1) 354-2535", - "Orders": [ + }, { - "OrderID": 10963, - "EmployeeID": 9, - "OrderDate": "1998-03-19T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", - "ShipVia": 3, - "Freight": 2.7, - "ShipName": "Furia Bacalhau e Frutos do Mar", - "ShipAddress": "Jardim das rosas n. 32", - "ShipCity": "Lisboa", - "ShipPostalCode": 1675, - "ShipCountry": "Portugal", + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 } ] } ] }, { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", + "CustomerID": "HUNGC", + "Company": "Hungry Coyote Import Store", + "ContactName": "Yoshi Latimer", + "ContactTitle": "Sales Representative", + "Address": "City Center Plaza 516 Main St.", + "City": "Elgin", + "Region": "OR", + "PostalCode": 97827, + "Country": "USA", + "Phone": "(503) 555-6874", + "Fax": "(503) 555-2376", "Orders": [ { - "OrderID": 10964, + "OrderID": 10375, "EmployeeID": 3, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-24T00:00:00", + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", "ShipVia": 2, - "Freight": 87.38, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "Freight": 20.12, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 6, + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 5, + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 30.34, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 69, - "UnitPrice": 36, + "ProductID": 62, + "UnitPrice": 39.4, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ + }, { - "OrderID": 10965, - "EmployeeID": 6, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", - "ShipVia": 3, - "Freight": 144.38, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 0.2, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 16, + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 10966, + "OrderID": 10600, "EmployeeID": 4, - "OrderDate": "1998-03-20T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", "ShipVia": 1, - "Freight": 27.19, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 45.13, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 37, - "UnitPrice": 26, - "Quantity": 8, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 12, - "Discount": 0.16 - }, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 1, + "Freight": 111.29, + "ShipName": "Hungry Coyote Import Store", + "ShipAddress": "City Center Plaza 516 Main St.", + "ShipCity": "Elgin", + "ShipRegion": "OR", + "ShipPostalCode": 97827, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0.16 + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 } ] } - ], - "Fax": "0452-076545" + ] }, { - "CustomerID": "TOMSP", - "Company": "Toms Spezialitäten", - "ContactName": "Karin Josephs", - "ContactTitle": "Marketing Manager", - "Address": "Luisenstr. 48", - "City": "Münster", - "PostalCode": 44087, - "Country": "Germany", - "Phone": "0251-031259", - "Fax": "0251-035695", + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", "Orders": [ { - "OrderID": 10967, - "EmployeeID": 2, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", "ShipVia": 2, - "Freight": 62.22, - "ShipName": "Toms Spezialitäten", - "ShipAddress": "Luisenstr. 48", - "ShipCity": "Münster", - "ShipPostalCode": 44087, - "ShipCountry": "Germany", + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, "Quantity": 12, "Discount": 0 }, { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 40, + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10968, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-04-01T00:00:00", - "ShipVia": 3, - "Freight": 74.6, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ - { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 30, - "Discount": 0 - }, { "ProductID": 24, "UnitPrice": 4.5, - "Quantity": 30, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 4, + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 10969, - "EmployeeID": 1, - "OrderDate": "1998-03-23T00:00:00", - "RequiredDate": "1998-04-20T00:00:00", - "ShippedDate": "1998-03-30T00:00:00", + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + }, + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 2, - "Freight": 0.21, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 46, - "UnitPrice": 12, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, "Quantity": 9, "Discount": 0 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "BOLID", - "Company": "Bólido Comidas preparadas", - "ContactName": "Martín Sommer", - "ContactTitle": "Owner", - "Address": "C/ Araquil, 67", - "City": "Madrid", - "PostalCode": 28023, - "Country": "Spain", - "Phone": "(91) 555 22 82", - "Fax": "(91) 555 91 99", - "Orders": [ + }, { - "OrderID": 10970, - "EmployeeID": 9, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-07T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 1, - "Freight": 16.16, - "ShipName": "Bólido Comidas preparadas", - "ShipAddress": "C/ Araquil, 67", - "ShipCity": "Madrid", - "ShipPostalCode": 28023, - "ShipCountry": "Spain", + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 40, - "Discount": 0.2 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANR", - "Company": "France restauration", - "ContactName": "Carine Schmitt", - "ContactTitle": "Marketing Manager", - "Address": "54, rue Royale", - "City": "Nantes", - "PostalCode": 44000, - "Country": "France", - "Phone": "40.32.21.21", - "Fax": "40.32.21.20", - "Orders": [ + }, { - "OrderID": 10971, + "OrderID": 11015, "EmployeeID": 2, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 2, - "Freight": 121.82, - "ShipName": "France restauration", - "ShipAddress": "54, rue Royale", - "ShipCity": "Nantes", - "ShipPostalCode": 44000, - "ShipCountry": "France", + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 14, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] @@ -33261,462 +23086,321 @@ ] }, { - "CustomerID": "LACOR", - "Company": "La corne de abondance", - "ContactName": "Daniel Tonini", - "ContactTitle": "Sales Representative", - "Address": "67, avenue de Europe", - "City": "Versailles", - "PostalCode": 78000, - "Country": "France", - "Phone": "30.59.84.10", - "Fax": "30.59.85.11", + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", "Orders": [ { - "OrderID": 10972, + "OrderID": 10389, "EmployeeID": 4, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-26T00:00:00", + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", "ShipVia": 2, - "Freight": 0.02, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 28000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 6, + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, "Discount": 0 }, { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 7, - "Discount": 0 - } - ] - }, - { - "OrderID": 10973, - "EmployeeID": 6, - "OrderDate": "1998-03-24T00:00:00", - "RequiredDate": "1998-04-21T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 2, - "Freight": 15.17, - "ShipName": "La corne de abondance", - "ShipAddress": "67, avenue de Europe", - "ShipCity": "Versailles", - "ShipPostalCode": 78000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 5, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 6, + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SPLIR", - "Company": "Split Rail Beer & Ale", - "ContactName": "Art Braunschweiger", - "ContactTitle": "Sales Manager", - "Address": "P.O. Box 555", - "City": "Lander", - "Region": "WY", - "PostalCode": 82520, - "Country": "USA", - "Phone": "(307) 555-4680", - "Fax": "(307) 555-6525", - "Orders": [ + }, { - "OrderID": 10974, + "OrderID": 10410, "EmployeeID": 3, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-08T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", "ShipVia": 3, - "Freight": 12.96, - "ShipName": "Split Rail Beer & Ale", - "ShipAddress": "P.O. Box 555", - "ShipCity": "Lander", - "ShipRegion": "WY", - "ShipPostalCode": 82520, - "ShipCountry": "USA", + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 10, + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 19000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 10975, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-04-22T00:00:00", - "ShippedDate": "1998-03-27T00:00:00", - "ShipVia": 3, - "Freight": 32.27, + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, "ShipName": "Bottom-Dollar Markets", "ShipAddress": "23 Tsawassen Blvd.", "ShipCity": "Tsawassen", "ShipRegion": "BC", - "ShipPostalCode": 45000, + "ShipPostalCode": 49000, "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 16, - "Discount": 0 + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 }, { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 10, - "Discount": 0 + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", - "Orders": [ + }, { - "OrderID": 10976, - "EmployeeID": 1, - "OrderDate": "1998-03-25T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", "ShipVia": 1, - "Freight": 37.97, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, "Quantity": 20, - "Discount": 0 + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 41000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10977, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", "ShipVia": 3, - "Freight": 208.5, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 29000, - "ShipCountry": "Sweden", + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 17000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 47, - "UnitPrice": 9.5, - "Quantity": 30, + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 46000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 10978, - "EmployeeID": 9, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", - "ShipVia": 2, - "Freight": 32.82, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", "ShipPostalCode": 45000, - "ShipCountry": "Belgium", + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 20, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 }, { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 40, - "Discount": 0.16 - }, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, - "Discount": 0 + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 6, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ - { - "OrderID": 10979, - "EmployeeID": 8, - "OrderDate": "1998-03-26T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-03-31T00:00:00", - "ShipVia": 2, - "Freight": 353.07, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", - "OrderDetails": [ - { - "ProductID": 7, - "UnitPrice": 30, "Quantity": 18, - "Discount": 0 + "Discount": 0.25 }, { - "ProductID": 12, + "ProductID": 56, "UnitPrice": 38, - "Quantity": 20, + "Quantity": 18, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 34000, + "ShipCountry": "Canada", + "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 80, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 27, - "UnitPrice": 43.9, + "ProductID": 10, + "UnitPrice": 31, "Quantity": 30, "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 24, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 35, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 21000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10980, - "EmployeeID": 4, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 1, - "Freight": 1.26, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 45000, + "ShipCountry": "Canada", "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 40, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 10981, - "EmployeeID": 1, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", - "ShipVia": 2, - "Freight": 193.37, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", - "OrderDetails": [ - { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 60, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 16000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { "OrderID": 10982, "EmployeeID": 2, @@ -33745,588 +23429,513 @@ "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 10983, - "EmployeeID": 2, - "OrderDate": "1998-03-27T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 2, - "Freight": 657.54, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-23T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 84, - "Discount": 0.16 + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 15, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, "Discount": 0 } ] }, { - "OrderID": 10984, - "EmployeeID": 1, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", "ShipVia": 3, - "Freight": 211.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 55, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 20, - "Discount": 0 - }, - { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 40, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", "Orders": [ { - "OrderID": 10985, - "EmployeeID": 2, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", "ShipVia": 1, - "Freight": 91.51, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 36, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + }, + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, "Discount": 0.1 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 35, + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "OCEAN", - "Company": "Océano Atlántico Ltda.", - "ContactName": "Yvonne Moncada", - "ContactTitle": "Sales Agent", - "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5333", - "Fax": "(1) 135-5535", - "Orders": [ + }, { - "OrderID": 10986, - "EmployeeID": 8, - "OrderDate": "1998-03-30T00:00:00", - "RequiredDate": "1998-04-27T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 217.86, - "ShipName": "Océano Atlántico Ltda.", - "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 10, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 15, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 10987, - "EmployeeID": 8, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 1, - "Freight": 185.48, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 32000, - "ShipCountry": "UK", + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, - "Discount": 0 + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 6, - "Discount": 0 + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 }, { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 20, - "Discount": 0 + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", - "Orders": [ + }, { - "OrderID": 10988, - "EmployeeID": 3, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 61.14, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 62, - "UnitPrice": 49.3, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, "Quantity": 40, - "Discount": 0.1 + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "QUEDE", - "Company": "Que Delícia", - "ContactName": "Bernardo Batista", - "ContactTitle": "Accounting Manager", - "Address": "Rua da Panificadora, 12", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-4252", - "Fax": "(21) 555-4545", - "Orders": [ + }, { - "OrderID": 10989, - "EmployeeID": 2, - "OrderDate": "1998-03-31T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-02T00:00:00", + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", "ShipVia": 1, - "Freight": 34.76, - "ShipName": "Que Delícia", - "ShipAddress": "Rua da Panificadora, 12", + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 40, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, "Discount": 0 }, { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 15, + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 4, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 10990, - "EmployeeID": 2, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", "ShipVia": 3, - "Freight": 117.61, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 65, - "Discount": 0 - }, - { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 60, - "Discount": 0.16 + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 65, - "Discount": 0.16 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 66, - "Discount": 0.16 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", - "Orders": [ + }, { - "OrderID": 10991, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-07T00:00:00", - "ShipVia": 1, - "Freight": 38.51, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 50, - "Discount": 0.2 - }, - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 20, + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, "Discount": 0.2 }, { - "ProductID": 76, + "ProductID": 39, "UnitPrice": 18, - "Quantity": 90, + "Quantity": 10, "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "THEBI", - "Company": "The Big Cheese", - "ContactName": "Liz Nixon", - "ContactTitle": "Marketing Manager", - "Address": "89 Jefferson Way Suite 2", - "City": "Portland", - "Region": "OR", - "PostalCode": 97201, - "Country": "USA", - "Phone": "(503) 555-3612", - "Orders": [ + }, { - "OrderID": 10992, - "EmployeeID": 1, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-03T00:00:00", - "ShipVia": 3, - "Freight": 4.27, - "ShipName": "The Big Cheese", - "ShipAddress": "89 Jefferson Way Suite 2", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97201, - "ShipCountry": "USA", + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 2, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-3612" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 50000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 10993, - "EmployeeID": 7, - "OrderDate": "1998-04-01T00:00:00", - "RequiredDate": "1998-04-29T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 3, - "Freight": 8.81, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 36000, - "ShipCountry": "Sweden", + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 50, - "Discount": 0.25 + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 35, - "Discount": 0.25 + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "VAFFE", - "Company": "Vaffeljernet", - "ContactName": "Palle Ibsen", - "ContactTitle": "Sales Manager", - "Address": "Smagsloget 45", - "City": "Århus", - "PostalCode": 8200, - "Country": "Denmark", - "Phone": "86 21 32 43", - "Fax": "86 22 33 44", - "Orders": [ + }, { - "OrderID": 10994, + "OrderID": 11014, "EmployeeID": 2, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-16T00:00:00", - "ShippedDate": "1998-04-09T00:00:00", + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 3, - "Freight": 65.53, - "ShipName": "Vaffeljernet", - "ShipAddress": "Smagsloget 45", - "ShipCity": "Århus", - "ShipPostalCode": 8200, - "ShipCountry": "Denmark", + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 18, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 10995, + "OrderID": 11039, "EmployeeID": 1, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-06T00:00:00", - "ShipVia": 3, - "Freight": 46, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-05-25T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Sao Paulo", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", "OrderDetails": [ { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 28, + "UnitPrice": 45.6, "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, "Discount": 0 } ] @@ -34334,935 +23943,905 @@ ] }, { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", "Orders": [ { - "OrderID": 10996, - "EmployeeID": 4, - "OrderDate": "1998-04-02T00:00:00", - "RequiredDate": "1998-04-30T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 2, - "Freight": 1.12, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 40, + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 10997, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", "ShipVia": 2, - "Freight": 73.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 50, + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 20, - "Discount": 0.25 - }, - { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 10998, - "EmployeeID": 8, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-04-17T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 2, - "Freight": 20.31, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 7, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, "Discount": 0 }, { - "ProductID": 74, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, "Discount": 0 }, { "ProductID": 75, "UnitPrice": 7.75, - "Quantity": 30, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ + }, { - "OrderID": 10999, - "EmployeeID": 6, - "OrderDate": "1998-04-03T00:00:00", - "RequiredDate": "1998-05-01T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", "ShipVia": 2, - "Freight": 96.35, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 20, - "Discount": 0.06 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, + "ProductID": 35, + "UnitPrice": 18, "Quantity": 15, - "Discount": 0.06 + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 21, - "Discount": 0.06 + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", "Orders": [ { - "OrderID": 11000, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", - "ShipVia": 3, - "Freight": 55.12, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + }, + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 30, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 30000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11001, - "EmployeeID": 2, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-14T00:00:00", + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", "ShipVia": 2, - "Freight": 197.3, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 30000, - "ShipCountry": "Sweden", + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 60, + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 22, - "UnitPrice": 21, - "Quantity": 25, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 25, + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 6, + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11002, - "EmployeeID": 4, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 1, - "Freight": 141.16, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 56, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, + "ProductID": 20, + "UnitPrice": 81, "Quantity": 15, - "Discount": 0.16 + "Discount": 0 }, - { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 24, - "Discount": 0.16 + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 40, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, "Discount": 0 } ] } - ], - "Fax": "(208) 555-8097" + ] }, { - "CustomerID": "THECR", - "Company": "The Cracker Box", - "ContactName": "Liu Wong", - "ContactTitle": "Marketing Assistant", - "Address": "55 Grizzly Peak Rd.", - "City": "Butte", - "Region": "MT", - "PostalCode": 59801, - "Country": "USA", - "Phone": "(406) 555-5834", - "Fax": "(406) 555-8083", + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", "Orders": [ { - "OrderID": 11003, - "EmployeeID": 3, - "OrderDate": "1998-04-06T00:00:00", - "RequiredDate": "1998-05-04T00:00:00", - "ShippedDate": "1998-04-08T00:00:00", - "ShipVia": 3, - "Freight": 14.91, - "ShipName": "The Cracker Box", - "ShipAddress": "55 Grizzly Peak Rd.", - "ShipCity": "Butte", - "ShipRegion": "MT", - "ShipPostalCode": 59801, - "ShipCountry": "USA", + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 4, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 10, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "MAISD", - "Company": "Maison Dewey", - "ContactName": "Catherine Dewey", - "ContactTitle": "Sales Agent", - "Address": "Rue Joseph-Bens 532", - "City": "Bruxelles", - "PostalCode": 37000, - "Country": "Belgium", - "Phone": "(02) 201 24 67", - "Fax": "(02) 201 24 68", - "Orders": [ + }, { - "OrderID": 11004, + "OrderID": 10753, "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", "ShipVia": 1, - "Freight": 44.84, - "ShipName": "Maison Dewey", - "ShipAddress": "Rue Joseph-Bens 532", - "ShipCity": "Bruxelles", - "ShipPostalCode": 33000, - "ShipCountry": "Belgium", + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 6, + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 6, + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WILMK", - "Company": "Wilman Kala", - "ContactName": "Matti Karttunen", - "ContactTitle": "Owner/Marketing Assistant", - "Address": "Keskuskatu 45", - "City": "Helsinki", - "PostalCode": 21240, - "Country": "Finland", - "Phone": "90-224 8858", - "Fax": "90-224 8858", - "Orders": [ + }, { - "OrderID": 11005, - "EmployeeID": 2, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", "ShipVia": 1, - "Freight": 0.75, - "ShipName": "Wilman Kala", - "ShipAddress": "Keskuskatu 45", - "ShipCity": "Helsinki", - "ShipPostalCode": 21240, - "ShipCountry": "Finland", + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 2, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, + "ProductID": 51, + "UnitPrice": 53, "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11006, - "EmployeeID": 3, - "OrderDate": "1998-04-07T00:00:00", - "RequiredDate": "1998-05-05T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", "ShipVia": 2, - "Freight": 25.19, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, - "ShipCountry": "USA", + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 8, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 2, - "Discount": 0.25 + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 } ] } - ], - "Fax": "(503) 555-7555" + ] }, { - "CustomerID": "PRINI", - "Company": "Princesa Isabel Vinhos", - "ContactName": "Isabel de Castro", - "ContactTitle": "Sales Representative", - "Address": "Estrada da saúde n. 58", - "City": "Lisboa", - "PostalCode": 1756, - "Country": "Portugal", - "Phone": "(1) 356-5634", + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", "Orders": [ { - "OrderID": 11007, - "EmployeeID": 8, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", - "ShipVia": 2, - "Freight": 202.24, - "ShipName": "Princesa Isabel Vinhos", - "ShipAddress": "Estrada da saúde n. 58", - "ShipCity": "Lisboa", - "ShipPostalCode": 1756, - "ShipCountry": "Portugal", + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 30, + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 10, + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, "Discount": 0 + } + ] + }, + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 }, { "ProductID": 42, "UnitPrice": 14, - "Quantity": 14, + "Quantity": 20, "Discount": 0 } ] - } - ], - "Fax": "(1) 356-5634" - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11008, - "EmployeeID": 7, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-09T00:00:00", - "ShipVia": 3, - "Freight": 79.46, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 28, - "UnitPrice": 45.6, - "Quantity": 70, - "Discount": 0.06 + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 90, - "Discount": 0.06 + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 21, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11009, - "EmployeeID": 2, - "OrderDate": "1998-04-08T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 59.11, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 12, + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 18, - "Discount": 0.25 + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 }, { "ProductID": 60, "UnitPrice": 34, - "Quantity": 9, + "Quantity": 10, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11010, + "OrderID": 10734, "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 2, - "Freight": 28.71, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 20, + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ALFKI", - "Company": "Alfreds Futterkiste", - "ContactName": "Maria Anders", - "ContactTitle": "Sales Representative", - "Address": "Obere Str. 57", - "City": "Berlin", - "PostalCode": 12209, - "Country": "Germany", - "Phone": "030-0074321", - "Fax": "030-0076545", - "Orders": [ + }, { - "OrderID": 11011, - "EmployeeID": 3, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", "ShipVia": 1, - "Freight": 1.21, - "ShipName": "Alfred's Futterkiste", - "ShipAddress": "Obere Str. 57", - "ShipCity": "Berlin", - "ShipPostalCode": 12209, - "ShipCountry": "Germany", + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 58, - "UnitPrice": 13.25, - "Quantity": 40, - "Discount": 0.06 + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 }, { - "ProductID": 71, - "UnitPrice": 21.5, + "ProductID": 56, + "UnitPrice": 38, "Quantity": 20, - "Discount": 0 + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "FRANK", - "Company": "Frankenversand", - "ContactName": "Peter Franken", - "ContactTitle": "Marketing Manager", - "Address": "Berliner Platz 43", - "City": "München", - "PostalCode": 80805, - "Country": "Germany", - "Phone": "089-0877310", - "Fax": "089-0877451", - "Orders": [ + }, { - "OrderID": 11012, - "EmployeeID": 1, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-04-23T00:00:00", - "ShippedDate": "1998-04-17T00:00:00", - "ShipVia": 3, - "Freight": 242.95, - "ShipName": "Frankenversand", - "ShipAddress": "Berliner Platz 43", - "ShipCity": "München", - "ShipPostalCode": 80805, - "ShipCountry": "Germany", + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 50, - "Discount": 0.06 - }, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 36, - "Discount": 0.06 + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 60, - "Discount": 0.06 + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 } ] } - ] + ], + "Fax": "(11) 555-9482" }, { - "CustomerID": "ROMEY", - "Company": "Romero y tomillo", - "ContactName": "Alejandra Camino", - "ContactTitle": "Accounting Manager", - "Address": "Gran Vía, 1", - "City": "Madrid", - "PostalCode": 28001, - "Country": "Spain", - "Phone": "(91) 745 6200", - "Fax": "(91) 745 6210", + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 38000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", "Orders": [ { - "OrderID": 11013, - "EmployeeID": 2, - "OrderDate": "1998-04-09T00:00:00", - "RequiredDate": "1998-05-07T00:00:00", - "ShippedDate": "1998-04-10T00:00:00", - "ShipVia": 1, - "Freight": 32.99, - "ShipName": "Romero y tomillo", - "ShipAddress": "Gran Vía, 1", - "ShipCity": "Madrid", - "ShipPostalCode": 28001, - "ShipCountry": "Spain", + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 23, - "UnitPrice": 9, + "ProductID": 2, + "UnitPrice": 15.2, "Quantity": 10, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 4, + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 45, - "UnitPrice": 9.5, - "Quantity": 20, + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + }, + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 2, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ - { - "OrderID": 11014, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-15T00:00:00", - "ShipVia": 3, - "Freight": 23.6, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", - "OrderDetails": [ - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 28, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "SANTG", - "Company": "Santé Gourmet", - "ContactName": "Jonas Bergulfsen", - "ContactTitle": "Owner", - "Address": "Erling Skakkes gate 78", - "City": "Stavern", - "PostalCode": 4110, - "Country": "Norway", - "Phone": "07-98 92 35", - "Fax": "07-98 92 47", - "Orders": [ + }, { - "OrderID": 11015, - "EmployeeID": 2, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-04-24T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", "ShipVia": 2, - "Freight": 4.62, - "ShipName": "Santé Gourmet", - "ShipAddress": "Erling Skakkes gate 78", - "ShipCity": "Stavern", - "ShipPostalCode": 4110, - "ShipCountry": "Norway", + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 36000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 15, + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 18, + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, "Discount": 0 } ] @@ -35270,158 +24849,141 @@ ] }, { - "CustomerID": "AROUT", - "Company": "Around the Horn", - "ContactName": "Thomas Hardy", + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", "ContactTitle": "Sales Representative", - "Address": "120 Hanover Sq.", - "City": "London", - "PostalCode": 42000, - "Country": "UK", - "Phone": "(171) 555-7788", - "Fax": "(171) 555-6750", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", "Orders": [ { - "OrderID": 11016, - "EmployeeID": 9, - "OrderDate": "1998-04-10T00:00:00", - "RequiredDate": "1998-05-08T00:00:00", - "ShippedDate": "1998-04-13T00:00:00", + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", "ShipVia": 2, - "Freight": 33.8, - "ShipName": "Around the Horn", - "ShipAddress": "Brook Farm Stratford St. Mary", - "ShipCity": "Colchester", - "ShipRegion": "Essex", - "ShipPostalCode": 20000, - "ShipCountry": "UK", + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 15, + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 16, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", - "Orders": [ + }, { - "OrderID": 11017, - "EmployeeID": 9, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", "ShipVia": 2, - "Freight": 754.26, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 3, + "ProductID": 21, "UnitPrice": 10, - "Quantity": 25, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 110, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, "Discount": 0 }, { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LONEP", - "Company": "Lonesome Pine Restaurant", - "ContactName": "Fran Wilson", - "ContactTitle": "Sales Manager", - "Address": "89 Chiaroscuro Rd.", - "City": "Portland", - "Region": "OR", - "PostalCode": 97219, - "Country": "USA", - "Phone": "(503) 555-9573", - "Fax": "(503) 555-9646", - "Orders": [ + }, { - "OrderID": 11018, - "EmployeeID": 4, - "OrderDate": "1998-04-13T00:00:00", - "RequiredDate": "1998-05-11T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", "ShipVia": 2, - "Freight": 11.65, - "ShipName": "Lonesome Pine Restaurant", - "ShipAddress": "89 Chiaroscuro Rd.", - "ShipCity": "Portland", - "ShipRegion": "OR", - "ShipPostalCode": 97219, - "ShipCountry": "USA", + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 10, + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 5, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "RANCH", - "Company": "Rancho grande", - "ContactName": "Sergio Gutiérrez", - "ContactTitle": "Sales Representative", - "Address": "Av. del Libertador 900", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 123-5555", - "Fax": "(1) 123-5556", - "Orders": [ + }, { "OrderID": 11019, "EmployeeID": 6, @@ -35453,139 +25015,60 @@ ] }, { - "CustomerID": "OTTIK", - "Company": "Ottilies Käseladen", - "ContactName": "Henriette Pfalzheim", - "ContactTitle": "Owner", - "Address": "Mehrheimerstr. 369", - "City": "Köln", - "PostalCode": 50739, - "Country": "Germany", - "Phone": "0221-0644327", - "Fax": "0221-0765721", - "Orders": [ - { - "OrderID": 11020, - "EmployeeID": 2, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-16T00:00:00", - "ShipVia": 2, - "Freight": 43.3, - "ShipName": "Ottilies Käseladen", - "ShipAddress": "Mehrheimerstr. 369", - "ShipCity": "Köln", - "ShipPostalCode": 50739, - "ShipCountry": "Germany", - "OrderDetails": [ - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 24, - "Discount": 0.16 - } - ] - } - ] - }, - { - "CustomerID": "QUICK", - "Company": "QUICK-Stop", - "ContactName": "Horst Kloss", - "ContactTitle": "Accounting Manager", - "Address": "Taucherstraße 10", - "City": "Cunewalde", - "PostalCode": 1307, - "Country": "Germany", - "Phone": "0372-035188", - "Fax": "0372-035189", + "CustomerID": "LAZYK", + "Company": "Lazy K Kountry Store", + "ContactName": "John Steel", + "ContactTitle": "Marketing Manager", + "Address": "12 Orchestra Terrace", + "City": "Walla Walla", + "Region": "WA", + "PostalCode": 99362, + "Country": "USA", + "Phone": "(509) 555-7969", + "Fax": "(509) 555-6221", "Orders": [ { - "OrderID": 11021, - "EmployeeID": 3, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-04-21T00:00:00", - "ShipVia": 1, - "Freight": 297.18, - "ShipName": "QUICK-Stop", - "ShipAddress": "Taucherstraße 10", - "ShipCity": "Cunewalde", - "ShipPostalCode": 1307, - "ShipCountry": "Germany", + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 11, - "Discount": 0.25 - }, - { - "ProductID": 20, - "UnitPrice": 81, - "Quantity": 15, - "Discount": 0 - }, - { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 63, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 44, - "Discount": 0.25 - }, - { - "ProductID": 72, - "UnitPrice": 34.8, - "Quantity": 35, + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ + }, { - "OrderID": 11022, - "EmployeeID": 9, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", "ShipVia": 2, - "Freight": 6.27, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 35, - "Discount": 0 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 30, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, "Discount": 0 } ] @@ -35593,460 +25076,323 @@ ] }, { - "CustomerID": "BSBEV", - "Company": "Best Beverages", - "ContactName": "Victoria Ashworth", - "ContactTitle": "Sales Representative", - "Address": "Fauntleroy Circus", - "City": "London", + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", "PostalCode": 19000, - "Country": "UK", - "Phone": "(171) 555-1212", + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", "Orders": [ { - "OrderID": 11023, - "EmployeeID": 1, - "OrderDate": "1998-04-14T00:00:00", - "RequiredDate": "1998-04-28T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 123.83, - "ShipName": "Best Beverages", - "ShipAddress": "Fauntleroy Circus", - "ShipCity": "London", - "ShipPostalCode": 36000, - "ShipCountry": "UK", + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 4, + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "(171) 555-1212" - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 16000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11024, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", - "ShipVia": 1, - "Freight": 74.36, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 23000, - "ShipCountry": "UK", + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 31000, + "ShipCountry": "Canada", "OrderDetails": [ { - "ProductID": 26, - "UnitPrice": 31.23, - "Quantity": 12, - "Discount": 0 - }, - { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 65, - "UnitPrice": 21.05, - "Quantity": 21, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 50, + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WARTH", - "Company": "Wartian Herkku", - "ContactName": "Pirkko Koskitalo", - "ContactTitle": "Accounting Manager", - "Address": "Torikatu 38", - "City": "Oulu", - "PostalCode": 90110, - "Country": "Finland", - "Phone": "981-443655", - "Fax": "981-443655", - "Orders": [ + }, { - "OrderID": 11025, - "EmployeeID": 6, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", "ShipVia": 3, - "Freight": 29.17, - "ShipName": "Wartian Herkku", - "ShipAddress": "Torikatu 38", - "ShipCity": "Oulu", - "ShipPostalCode": 90110, - "ShipCountry": "Finland", + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 48000, + "ShipCountry": "Canada", "OrderDetails": [ - { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 10, - "Discount": 0.1 - }, { "ProductID": 13, "UnitPrice": 6, - "Quantity": 20, - "Discount": 0.1 + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 } ] } ] }, { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", "Orders": [ { - "OrderID": 11026, - "EmployeeID": 4, - "OrderDate": "1998-04-15T00:00:00", - "RequiredDate": "1998-05-13T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", - "ShipVia": 1, - "Freight": 47.09, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 10, + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 49000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11027, - "EmployeeID": 1, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-20T00:00:00", + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 1, - "Freight": 52.52, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 11000, - "ShipCountry": "Canada", + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 30, - "Discount": 0.25 - }, - { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 21, - "Discount": 0.25 + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "KOENE", - "Company": "Königlich Essen", - "ContactName": "Philip Cramer", - "ContactTitle": "Sales Associate", - "Address": "Maubelstr. 90", - "City": "Brandenburg", - "PostalCode": 14776, - "Country": "Germany", - "Phone": "0555-09876", - "Orders": [ + }, { - "OrderID": 11028, - "EmployeeID": 2, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 1, - "Freight": 29.59, - "ShipName": "Königlich Essen", - "ShipAddress": "Maubelstr. 90", - "ShipCity": "Brandenburg", - "ShipPostalCode": 14776, + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 24, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, "Discount": 0 } ] - } - ], - "Fax": "0555-09876" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11029, - "EmployeeID": 4, - "OrderDate": "1998-04-16T00:00:00", - "RequiredDate": "1998-05-14T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 47.84, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 56, - "UnitPrice": 38, - "Quantity": 20, + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 12, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, "Discount": 0 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11030, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", "ShipVia": 2, - "Freight": 830.75, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 100, - "Discount": 0.25 - }, - { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 70, + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, "Discount": 0 - }, - { - "ProductID": 29, - "UnitPrice": 123.79, - "Quantity": 60, - "Discount": 0.25 - }, - { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 100, - "Discount": 0.25 } ] }, { - "OrderID": 11031, + "OrderID": 10956, "EmployeeID": 6, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", "ShipVia": 2, - "Freight": 227.22, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 45, - "Discount": 0 - }, - { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 80, - "Discount": 0 - }, - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 21, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 20, + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 16, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11032, - "EmployeeID": 2, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-08-27T00:00:00", "ShipVia": 3, - "Freight": 606.19, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 36, - "UnitPrice": 19, - "Quantity": 35, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 38, - "UnitPrice": 263.5, - "Quantity": 25, + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, "Discount": 0 } ] @@ -36054,145 +25400,97 @@ ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", "Orders": [ { - "OrderID": 11033, - "EmployeeID": 7, - "OrderDate": "1998-04-17T00:00:00", - "RequiredDate": "1998-05-15T00:00:00", - "ShippedDate": "1998-04-23T00:00:00", + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", "ShipVia": 3, - "Freight": 84.74, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", - "OrderDetails": [ - { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 70, - "Discount": 0.1 - }, - { - "ProductID": 69, - "UnitPrice": 36, - "Quantity": 36, - "Discount": 0.1 - } - ] - } - ] - }, - { - "CustomerID": "OLDWO", - "Company": "Old World Delicatessen", - "ContactName": "Rene Phillips", - "ContactTitle": "Sales Representative", - "Address": "2743 Bering St.", - "City": "Anchorage", - "Region": "AK", - "PostalCode": 99508, - "Country": "USA", - "Phone": "(907) 555-7584", - "Fax": "(907) 555-2880", - "Orders": [ - { - "OrderID": 11034, - "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 40.32, - "ShipName": "Old World Delicatessen", - "ShipAddress": "2743 Bering St.", - "ShipCity": "Anchorage", - "ShipRegion": "AK", - "ShipPostalCode": 99508, - "ShipCountry": "USA", + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 19000, + "ShipCountry": "UK", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 15, - "Discount": 0.1 + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 44, - "UnitPrice": 19.45, - "Quantity": 12, + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 23000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11035, + "OrderID": 10752, "EmployeeID": 2, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 0.17, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 30000, - "ShipCountry": "Belgium", + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 22000, + "ShipCountry": "UK", "OrderDetails": [ { "ProductID": 1, "UnitPrice": 18, - "Quantity": 10, - "Discount": 0 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 60, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 42, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 47000, + "ShipCountry": "UK", + "OrderDetails": [ { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 10, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, "Discount": 0 } ] @@ -36200,181 +25498,175 @@ ] }, { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", "Orders": [ { - "OrderID": 11036, + "OrderID": 10521, "EmployeeID": 8, - "OrderDate": "1998-04-20T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-04-22T00:00:00", - "ShipVia": 3, - "Freight": 149.47, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 7, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 59, - "UnitPrice": 55, - "Quantity": 30, + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GODOS", - "Company": "Godos Cocina Típica", - "ContactName": "José Pedro Freyre", - "ContactTitle": "Sales Manager", - "Address": "C/ Romero, 33", - "City": "Sevilla", - "PostalCode": 41101, - "Country": "Spain", - "Phone": "(95) 555 82 82", - "Orders": [ + }, { - "OrderID": 11037, - "EmployeeID": 7, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-27T00:00:00", - "ShipVia": 1, - "Freight": 3.2, - "ShipName": "Godos Cocina Típica", - "ShipAddress": "C/ Romero, 33", - "ShipCity": "Sevilla", - "ShipPostalCode": 41101, - "ShipCountry": "Spain", + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 4, + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, "Discount": 0 } ] - } - ], - "Fax": "(95) 555 82 82" - }, - { - "CustomerID": "SUPRD", - "Company": "Suprêmes délices", - "ContactName": "Pascale Cartrain", - "ContactTitle": "Accounting Manager", - "Address": "Boulevard Tirou, 255", - "City": "Charleroi", - "PostalCode": 32000, - "Country": "Belgium", - "Phone": "(071) 23 67 22 20", - "Fax": "(071) 23 67 22 21", - "Orders": [ + }, { - "OrderID": 11038, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", - "ShipVia": 2, - "Freight": 29.59, - "ShipName": "Suprêmes délices", - "ShipAddress": "Boulevard Tirou, 255", - "ShipCity": "Charleroi", - "ShipPostalCode": 44000, - "ShipCountry": "Belgium", + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 5, - "Discount": 0.2 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 }, { - "ProductID": 52, - "UnitPrice": 7, - "Quantity": 2, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 71, - "UnitPrice": 21.5, - "Quantity": 30, + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LINOD", - "Company": "LINO-Delicateses", - "ContactName": "Felipe Izquierdo", - "ContactTitle": "Owner", - "Address": "Ave. 5 de Mayo Porlamar", - "City": "Sao Paulo", - "Region": "Nueva Esparta", - "PostalCode": 4980, - "Country": "Venezuela", - "Phone": "(8) 34-56-12", - "Fax": "(8) 34-93-93", - "Orders": [ + }, { - "OrderID": 11039, - "EmployeeID": 1, - "OrderDate": "1998-04-21T00:00:00", - "RequiredDate": "1998-05-19T00:00:00", - "ShippedDate": "1998-05-25T00:00:00", - "ShipVia": 2, - "Freight": 65, - "ShipName": "LINO-Delicateses", - "ShipAddress": "Ave. 5 de Mayo Porlamar", - "ShipCity": "Sao Paulo", - "ShipRegion": "Nueva Esparta", - "ShipPostalCode": 4980, - "ShipCountry": "Venezuela", + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 20, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 24, + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 - }, + } + ] + }, + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ { - "ProductID": 49, - "UnitPrice": 20, - "Quantity": 60, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 28, + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, "Discount": 0 } ] @@ -36394,13 +25686,48 @@ "Phone": "(503) 555-7555", "Orders": [ { - "OrderID": 11040, - "EmployeeID": 4, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-05-20T00:00:00", - "ShipVia": 3, - "Freight": 18.84, + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + }, + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, "ShipName": "Great Lakes Food Market", "ShipAddress": "2732 Baker Blvd.", "ShipCity": "Eugene", @@ -36409,590 +25736,476 @@ "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, - "Quantity": 20, + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, "Discount": 0 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "CHOPS", - "Company": "Chop-suey Chinese", - "ContactName": "Yang Wang", - "ContactTitle": "Owner", - "Address": "Hauptstr. 29", - "City": "Bern", - "PostalCode": 3012, - "Country": "Switzerland", - "Phone": "0452-076545", - "Orders": [ + }, { - "OrderID": 11041, - "EmployeeID": 3, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-28T00:00:00", + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", "ShipVia": 2, - "Freight": 48.22, - "ShipName": "Chop-suey Chinese", - "ShipAddress": "Hauptstr. 31", - "ShipCity": "Bern", - "ShipPostalCode": 3012, - "ShipCountry": "Switzerland", + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 }, { - "ProductID": 63, - "UnitPrice": 43.9, - "Quantity": 30, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 } ] - } - ], - "Fax": "0452-076545" - }, - { - "CustomerID": "COMMI", - "Company": "Comércio Mineiro", - "ContactName": "Pedro Afonso", - "ContactTitle": "Sales Associate", - "Address": "Av. dos Lusíadas, 23", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5432, - "Country": "Brazil", - "Phone": "(11) 555-7647", - "Orders": [ + }, { - "OrderID": 11042, - "EmployeeID": 2, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-06T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", "ShipVia": 1, - "Freight": 29.99, - "ShipName": "Comércio Mineiro", - "ShipAddress": "Av. dos Lusíadas, 23", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5432, - "ShipCountry": "Brazil", + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, { "ProductID": 44, "UnitPrice": 19.45, - "Quantity": 15, - "Discount": 0 + "Quantity": 28, + "Discount": 0.1 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, - "Discount": 0 + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 } ] - } - ], - "Fax": "(11) 555-7647" - }, - { - "CustomerID": "SPECD", - "Company": "Spécialités du monde", - "ContactName": "Dominique Perrier", - "ContactTitle": "Marketing Manager", - "Address": "25, rue Lauriston", - "City": "Paris", - "PostalCode": 75016, - "Country": "France", - "Phone": "(1) 47.55.60.10", - "Fax": "(1) 47.55.60.20", - "Orders": [ + }, { - "OrderID": 11043, - "EmployeeID": 5, - "OrderDate": "1998-04-22T00:00:00", - "RequiredDate": "1998-05-20T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", - "ShipVia": 2, - "Freight": 8.8, - "ShipName": "Spécialités du monde", - "ShipAddress": "25, rue Lauriston", - "ShipCity": "Paris", - "ShipPostalCode": 75016, - "ShipCountry": "France", + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WOLZA", - "Company": "Wolski Zajazd", - "ContactName": "Zbyszek Piestrzeniewicz", - "ContactTitle": "Owner", - "Address": "ul. Filtrowa 68", - "City": "Warszawa", - "PostalCode": 12000, - "Country": "Poland", - "Phone": "(26) 642-7012", - "Fax": "(26) 642-7012", - "Orders": [ + }, { - "OrderID": 11044, + "OrderID": 10816, "EmployeeID": 4, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 8.72, - "ShipName": "Wolski Zajazd", - "ShipAddress": "ul. Filtrowa 68", - "ShipCity": "Warszawa", - "ShipPostalCode": 12000, - "ShipCountry": "Poland", + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 62, - "UnitPrice": 49.3, - "Quantity": 12, - "Discount": 0 + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 31000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11045, - "EmployeeID": 6, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-05-23T00:00:00", + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", "ShipVia": 2, - "Freight": 70.58, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 36000, - "ShipCountry": "Canada", + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 15, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 24, - "Discount": 0 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "WANDK", - "Company": "Die Wandernde Kuh", - "ContactName": "Rita Müller", - "ContactTitle": "Sales Representative", - "Address": "Adenauerallee 900", - "City": "Stuttgart", - "PostalCode": 70563, - "Country": "Germany", - "Phone": "0711-020361", - "Fax": "0711-035428", - "Orders": [ + }, { - "OrderID": 11046, - "EmployeeID": 8, - "OrderDate": "1998-04-23T00:00:00", - "RequiredDate": "1998-05-21T00:00:00", - "ShippedDate": "1998-04-24T00:00:00", - "ShipVia": 2, - "Freight": 71.64, - "ShipName": "Die Wandernde Kuh", - "ShipAddress": "Adenauerallee 900", - "ShipCity": "Stuttgart", - "ShipPostalCode": 70563, - "ShipCountry": "Germany", + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 12, - "UnitPrice": 38, + "ProductID": 21, + "UnitPrice": 10, "Quantity": 20, - "Discount": 0.06 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShippedDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ { - "ProductID": 32, - "UnitPrice": 32, + "ProductID": 60, + "UnitPrice": 34, "Quantity": 15, - "Discount": 0.06 - }, - { - "ProductID": 35, - "UnitPrice": 18, - "Quantity": 18, - "Discount": 0.06 + "Discount": 0 } ] } - ] + ], + "Fax": "(503) 555-7555" }, { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 37000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 11000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", "Orders": [ { - "OrderID": 11047, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 46.62, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 14000, - "ShipCountry": "UK", + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 26000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 1, - "UnitPrice": 18, - "Quantity": 25, - "Discount": 0.25 + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 }, { - "ProductID": 5, - "UnitPrice": 21.35, - "Quantity": 30, - "Discount": 0.25 + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BOTTM", - "Company": "Bottom-Dollar Markets", - "ContactName": "Elizabeth Lincoln", - "ContactTitle": "Accounting Manager", - "Address": "23 Tsawassen Blvd.", - "City": "Tsawassen", - "Region": "BC", - "PostalCode": 48000, - "Country": "Canada", - "Phone": "(604) 555-4729", - "Fax": "(604) 555-3745", - "Orders": [ + }, { - "OrderID": 11048, - "EmployeeID": 7, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-04-30T00:00:00", + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", "ShipVia": 3, - "Freight": 24.12, - "ShipName": "Bottom-Dollar Markets", - "ShipAddress": "23 Tsawassen Blvd.", - "ShipCity": "Tsawassen", - "ShipRegion": "BC", - "ShipPostalCode": 15000, - "ShipCountry": "Canada", + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 47000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 42, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "GOURL", - "Company": "Gourmet Lanchonetes", - "ContactName": "André Fonseca", - "ContactTitle": "Sales Associate", - "Address": "Av. Brasil, 442", - "City": "Campinas", - "Region": "SP", - "PostalCode": 4876, - "Country": "Brazil", - "Phone": "(11) 555-9482", - "Orders": [ + }, { - "OrderID": 11049, - "EmployeeID": 3, - "OrderDate": "1998-04-24T00:00:00", - "RequiredDate": "1998-05-22T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", "ShipVia": 1, - "Freight": 8.34, - "ShipName": "Gourmet Lanchonetes", - "ShipAddress": "Av. Brasil, 442", - "ShipCity": "Campinas", - "ShipRegion": "SP", - "ShipPostalCode": 4876, - "ShipCountry": "Brazil", + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 4, - "Discount": 0.2 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 } ] - } - ], - "Fax": "(11) 555-9482" - }, - { - "CustomerID": "FOLKO", - "Company": "Folk och fä HB", - "ContactName": "Maria Larsson", - "ContactTitle": "Owner", - "Address": "Åkergatan 24", - "City": "Bräcke", - "PostalCode": 35000, - "Country": "Sweden", - "Phone": "0695-34 67 21", - "Fax": "0695-34 67 22", - "Orders": [ + }, { - "OrderID": 11050, - "EmployeeID": 8, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", "ShipVia": 2, - "Freight": 59.41, - "ShipName": "Folk och fä HB", - "ShipAddress": "Åkergatan 24", - "ShipCity": "Bräcke", - "ShipPostalCode": 11000, - "ShipCountry": "Sweden", + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 50, - "Discount": 0.1 + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 } ] - } - ] - }, - { - "CustomerID": "LAMAI", - "Company": "La maison de Asie", - "ContactName": "Annette Roulet", - "ContactTitle": "Sales Manager", - "Address": "1 rue Alsace-Lorraine", - "City": "Toulouse", - "PostalCode": 31000, - "Country": "France", - "Phone": "61.77.61.10", - "Fax": "61.77.61.11", - "Orders": [ + }, { - "OrderID": 11051, + "OrderID": 10896, "EmployeeID": 7, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-09-25T00:00:00", + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", "ShipVia": 3, - "Freight": 2.79, - "ShipName": "La maison de Asie", - "ShipAddress": "1 rue Alsace-Lorraine", - "ShipCity": "Toulouse", - "ShipPostalCode": 31000, - "ShipCountry": "France", - "OrderDetails": [ - { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 10, - "Discount": 0.2 - } - ] - } - ] - }, - { - "CustomerID": "HANAR", - "Company": "Hanari Carnes", - "ContactName": "Mario Pontes", - "ContactTitle": "Accounting Manager", - "Address": "Rua do Paço, 67", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 5454, - "Country": "Brazil", - "Phone": "(21) 555-0091", - "Fax": "(21) 555-8765", - "Orders": [ - { - "OrderID": 11052, - "EmployeeID": 3, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 1, - "Freight": 67.26, - "ShipName": "Hanari Carnes", - "ShipAddress": "Rua do Paço, 67", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 5454, - "ShipCountry": "Brazil", + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 28000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 30, - "Discount": 0.2 + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 }, { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PICCO", - "Company": "Piccolo und mehr", - "ContactName": "Georg Pipps", - "ContactTitle": "Sales Manager", - "Address": "Geislweg 14", - "City": "Salzburg", - "PostalCode": 5020, - "Country": "Austria", - "Phone": "6562-9722", - "Fax": "6562-9723", - "Orders": [ + }, { - "OrderID": 11053, - "EmployeeID": 2, - "OrderDate": "1998-04-27T00:00:00", - "RequiredDate": "1998-05-25T00:00:00", - "ShippedDate": "1998-04-29T00:00:00", + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", "ShipVia": 2, - "Freight": 53.05, - "ShipName": "Piccolo und mehr", - "ShipAddress": "Geislweg 14", - "ShipCity": "Salzburg", - "ShipPostalCode": 5020, - "ShipCountry": "Austria", + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 45000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 18, - "UnitPrice": 62.5, - "Quantity": 35, - "Discount": 0.2 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 }, { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 20, + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 25, - "Discount": 0.2 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 } ] - } - ] - }, - { - "CustomerID": "CACTU", - "Company": "Cactus Comidas para llevar", - "ContactName": "Patricio Simpson", - "ContactTitle": "Sales Agent", - "Address": "Cerrito 333", - "City": "Buenos Aires", - "PostalCode": 1010, - "Country": "Argentina", - "Phone": "(1) 135-5555", - "Fax": "(1) 135-4892", - "Orders": [ + }, { - "OrderID": 11054, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-26T00:00:00", + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", "ShipVia": 1, - "Freight": 0.33, - "ShipName": "Cactus Comidas para llevar", - "ShipAddress": "Cerrito 333", - "ShipCity": "Buenos Aires", - "ShipPostalCode": 1010, - "ShipCountry": "Argentina", + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 33000, + "ShipCountry": "Belgium", "OrderDetails": [ { - "ProductID": 33, - "UnitPrice": 2.5, - "Quantity": 10, + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 67, - "UnitPrice": 14, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, "Discount": 0 } ] @@ -37000,187 +26213,119 @@ ] }, { - "CustomerID": "HILAA", - "Company": "HILARION-Abastos", - "ContactName": "Carlos Hernández", - "ContactTitle": "Sales Representative", - "Address": "Carrera 22 con Ave. Carlos Soublette #8-35", - "City": "San Cristóbal", - "Region": "Táchira", - "PostalCode": 5022, - "Country": "Venezuela", - "Phone": "(5) 555-1340", - "Fax": "(5) 555-1948", + "CustomerID": "TRAIH", + "Company": "Trail's Head Gourmet Provisioners", + "ContactName": "Helvetius Nagy", + "ContactTitle": "Sales Associate", + "Address": "722 DaVinci Blvd.", + "City": "Kirkland", + "Region": "WA", + "PostalCode": 98034, + "Country": "USA", + "Phone": "(206) 555-8257", + "Fax": "(206) 555-2174", "Orders": [ { - "OrderID": 11055, - "EmployeeID": 7, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-26T00:00:00", - "ShippedDate": "1998-05-05T00:00:00", + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 120.92, - "ShipName": "HILARION-Abastos", - "ShipAddress": "Carrera 22 con Ave. Carlos Soublette #8-35", - "ShipCity": "San Cristóbal", - "ShipRegion": "Táchira", - "ShipPostalCode": 5022, - "ShipCountry": "Venezuela", + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 24, - "UnitPrice": 4.5, - "Quantity": 15, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, "Discount": 0 }, { - "ProductID": 25, - "UnitPrice": 14, - "Quantity": 15, + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, "Discount": 0 }, { - "ProductID": 51, - "UnitPrice": 53, - "Quantity": 20, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 57, - "UnitPrice": 19.5, - "Quantity": 20, + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "EASTC", - "Company": "Eastern Connection", - "ContactName": "Ann Devon", - "ContactTitle": "Sales Agent", - "Address": "35 King George", - "City": "London", - "PostalCode": 35000, - "Country": "UK", - "Phone": "(171) 555-0297", - "Fax": "(171) 555-3373", - "Orders": [ + }, { - "OrderID": 11056, - "EmployeeID": 8, - "OrderDate": "1998-04-28T00:00:00", - "RequiredDate": "1998-05-12T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", "ShipVia": 2, - "Freight": 278.96, - "ShipName": "Eastern Connection", - "ShipAddress": "35 King George", - "ShipCity": "London", - "ShipPostalCode": 17000, - "ShipCountry": "UK", + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, - "Quantity": 40, + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 50, - "Discount": 0 - } - ] - } - ] - }, - { - "CustomerID": "NORTS", - "Company": "North/South", - "ContactName": "Simon Crowther", - "ContactTitle": "Sales Associate", - "Address": "South House 300 Queensbridge", - "City": "London", - "PostalCode": 14000, - "Country": "UK", - "Phone": "(171) 555-7733", - "Fax": "(171) 555-2530", - "Orders": [ - { - "OrderID": 11057, - "EmployeeID": 3, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-05-01T00:00:00", - "ShipVia": 3, - "Freight": 4.13, - "ShipName": "North/South", - "ShipAddress": "South House 300 Queensbridge", - "ShipCity": "London", - "ShipPostalCode": 47000, - "ShipCountry": "UK", - "OrderDetails": [ - { - "ProductID": 70, - "UnitPrice": 15, - "Quantity": 3, + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BLAUS", - "Company": "Blauer See Delikatessen", - "ContactName": "Hanna Moos", - "ContactTitle": "Sales Representative", - "Address": "Forsterstr. 57", - "City": "Mannheim", - "PostalCode": 68306, - "Country": "Germany", - "Phone": "0621-08460", - "Fax": "0621-08924", - "Orders": [ + }, { - "OrderID": 11058, - "EmployeeID": 9, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-05-27T00:00:00", - "ShippedDate": "1998-08-27T00:00:00", - "ShipVia": 3, - "Freight": 31.14, - "ShipName": "Blauer See Delikatessen", - "ShipAddress": "Forsterstr. 57", - "ShipCity": "Mannheim", - "ShipPostalCode": 68306, - "ShipCountry": "Germany", + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 21, - "UnitPrice": 10, + "ProductID": 62, + "UnitPrice": 49.3, "Quantity": 3, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 21, - "Discount": 0 - }, - { - "ProductID": 61, - "UnitPrice": 28.5, - "Quantity": 4, + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, "Discount": 0 } ] @@ -37188,413 +26333,370 @@ ] }, { - "CustomerID": "RICAR", - "Company": "Ricardo Adocicados", - "ContactName": "Janete Limeira", - "ContactTitle": "Sales Associate", - "Address": "Av. Copacabana, 267", - "City": "Sao Paulo", - "Region": "RJ", - "PostalCode": 2389, - "Country": "Brazil", - "Phone": "(21) 555-3412", - "Fax": "(21) 555-3413", + "CustomerID": "LETSS", + "Company": "Let's Stop N Shop", + "ContactName": "Jaime Yorres", + "ContactTitle": "Owner", + "Address": "87 Polk St. Suite 5", + "City": "San Francisco", + "Region": "CA", + "PostalCode": 94117, + "Country": "USA", + "Phone": "(415) 555-5938", "Orders": [ { - "OrderID": 11059, - "EmployeeID": 2, - "OrderDate": "1998-04-29T00:00:00", - "RequiredDate": "1998-06-10T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", "ShipVia": 2, - "Freight": 85.8, - "ShipName": "Ricardo Adocicados", - "ShipAddress": "Av. Copacabana, 267", - "ShipCity": "Sao Paulo", - "ShipRegion": "RJ", - "ShipPostalCode": 2389, - "ShipCountry": "Brazil", + "Freight": 13.73, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 30, - "Discount": 0 - }, - { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 12, + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 35, + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "FRANS", - "Company": "Franchi S.p.A.", - "ContactName": "Paolo Accorti", - "ContactTitle": "Sales Representative", - "Address": "Via Monte Bianco 34", - "City": "Torino", - "PostalCode": 10100, - "Country": "Italy", - "Phone": "011-4988260", - "Fax": "011-4988261", - "Orders": [ + }, { - "OrderID": 11060, - "EmployeeID": 2, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", "ShipVia": 2, - "Freight": 10.98, - "ShipName": "Franchi S.p.A.", - "ShipAddress": "Via Monte Bianco 34", - "ShipCity": "Torino", - "ShipPostalCode": 10100, - "ShipCountry": "Italy", + "Freight": 51.44, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 4, - "Discount": 0 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 10, - "Discount": 0 + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 } ] - } - ] - }, - { - "CustomerID": "GREAL", - "Company": "Great Lakes Food Market", - "ContactName": "Howard Snyder", - "ContactTitle": "Marketing Manager", - "Address": "2732 Baker Blvd.", - "City": "Eugene", - "Region": "OR", - "PostalCode": 97403, - "Country": "USA", - "Phone": "(503) 555-7555", - "Orders": [ + }, { - "OrderID": 11061, - "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-06-11T00:00:00", - "ShippedDate": "1998-06-11T00:00:00", - "ShipVia": 3, - "Freight": 14.01, - "ShipName": "Great Lakes Food Market", - "ShipAddress": "2732 Baker Blvd.", - "ShipCity": "Eugene", - "ShipRegion": "OR", - "ShipPostalCode": 97403, + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 45.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 15, - "Discount": 0 + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 } ] - } - ], - "Fax": "(503) 555-7555" - }, - { - "CustomerID": "REGGC", - "Company": "Reggiani Caseifici", - "ContactName": "Maurizio Moroni", - "ContactTitle": "Sales Associate", - "Address": "Strada Provinciale 124", - "City": "Reggio Emilia", - "PostalCode": 42100, - "Country": "Italy", - "Phone": "0522-556721", - "Fax": "0522-556722", - "Orders": [ + }, { - "OrderID": 11062, + "OrderID": 10884, "EmployeeID": 4, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-06-28T00:00:00", + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", "ShipVia": 2, - "Freight": 29.93, - "ShipName": "Reggiani Caseifici", - "ShipAddress": "Strada Provinciale 124", - "ShipCity": "Reggio Emilia", - "ShipPostalCode": 42100, - "ShipCountry": "Italy", + "Freight": 90.97, + "ShipName": "Let's Stop N Shop", + "ShipAddress": "87 Polk St. Suite 5", + "ShipCity": "San Francisco", + "ShipRegion": "CA", + "ShipPostalCode": 94117, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 10, - "Discount": 0.2 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 }, { - "ProductID": 70, - "UnitPrice": 15, + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, "Quantity": 12, - "Discount": 0.2 + "Discount": 0.06 } ] } - ] + ], + "Fax": "(415) 555-5938" }, { - "CustomerID": "HUNGO", - "Company": "Hungry Owl All-Night Grocers", - "ContactName": "Patricia McKenna", - "ContactTitle": "Sales Associate", - "Address": "8 Johnstown Road", - "City": "Cork", - "PostalCode": 48637, - "Region": "Co. Cork", - "Country": "Ireland", - "Phone": "2967 542", - "Fax": "2967 3333", + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", "Orders": [ { - "OrderID": 11063, - "EmployeeID": 3, - "OrderDate": "1998-04-30T00:00:00", - "RequiredDate": "1998-05-28T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 81.73, - "ShipName": "Hungry Owl All-Night Grocers", - "ShipAddress": "8 Johnstown Road", - "ShipCity": "Cork", - "ShipPostalCode": 48637, - "ShipRegion": "Co. Cork", - "ShipCountry": "Ireland", + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 30, + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + }, + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 40, - "UnitPrice": 18.4, - "Quantity": 40, - "Discount": 0.1 + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 30, - "Discount": 0.1 + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SAVEA", - "Company": "Save-a-lot Markets", - "ContactName": "Jose Pavarotti", - "ContactTitle": "Sales Representative", - "Address": "187 Suffolk Ln.", - "City": "Boise", - "Region": "ID", - "PostalCode": 83720, - "Country": "USA", - "Phone": "(208) 555-8097", - "Orders": [ + }, { - "OrderID": 11064, - "EmployeeID": 1, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", "ShipVia": 1, - "Freight": 30.09, - "ShipName": "Save-a-lot Markets", - "ShipAddress": "187 Suffolk Ln.", - "ShipCity": "Boise", - "ShipRegion": "ID", - "ShipPostalCode": 83720, - "ShipCountry": "USA", + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 17, - "UnitPrice": 39, - "Quantity": 77, - "Discount": 0.1 + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 12, + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, "Discount": 0 }, { - "ProductID": 53, - "UnitPrice": 32.8, - "Quantity": 25, - "Discount": 0.1 - }, + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + }, + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 4, - "Discount": 0.1 + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 }, { - "ProductID": 68, - "UnitPrice": 12.5, - "Quantity": 55, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, "Discount": 0 } ] - } - ], - "Fax": "(208) 555-8097" - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11065, - "EmployeeID": 8, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-29T00:00:00", - "ShipVia": 1, - "Freight": 12.91, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 30, - "UnitPrice": 25.89, - "Quantity": 4, - "Discount": 0.25 + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 }, { - "ProductID": 54, - "UnitPrice": 7.45, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "WHITC", - "Company": "White Clover Markets", - "ContactName": "Karl Jablonski", - "ContactTitle": "Owner", - "Address": "305 - 14th Ave. S. Suite 3B", - "City": "Seattle", - "Region": "WA", - "PostalCode": 98128, - "Country": "USA", - "Phone": "(206) 555-4112", - "Fax": "(206) 555-4115", - "Orders": [ + }, { - "OrderID": 11066, - "EmployeeID": 7, - "OrderDate": "1998-05-01T00:00:00", - "RequiredDate": "1998-05-29T00:00:00", - "ShippedDate": "1998-05-04T00:00:00", - "ShipVia": 2, - "Freight": 44.72, - "ShipName": "White Clover Markets", - "ShipAddress": "1029 - 12th Ave. S.", - "ShipCity": "Seattle", - "ShipRegion": "WA", - "ShipPostalCode": 98124, - "ShipCountry": "USA", + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 3, + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, - "Quantity": 42, + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 34, - "UnitPrice": 14, - "Quantity": 35, + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "DRACD", - "Company": "Drachenblut Delikatessen", - "ContactName": "Sven Ottlieb", - "ContactTitle": "Order Administrator", - "Address": "Walserweg 21", - "City": "Aachen", - "PostalCode": 52066, - "Country": "Germany", - "Phone": "0241-039123", - "Fax": "0241-059428", - "Orders": [ + }, { - "OrderID": 11067, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-05-18T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 7.98, - "ShipName": "Drachenblut Delikatessen", - "ShipAddress": "Walserweg 21", - "ShipCity": "Aachen", - "ShipPostalCode": 52066, - "ShipCountry": "Germany", + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", "OrderDetails": [ { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 9, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, "Discount": 0 } ] @@ -37602,85 +26704,113 @@ ] }, { - "CustomerID": "QUEEN", - "Company": "Queen Cozinha", - "ContactName": "Lúcia Carvalho", + "CustomerID": "THECR", + "Company": "The Cracker Box", + "ContactName": "Liu Wong", "ContactTitle": "Marketing Assistant", - "Address": "Alameda dos Canàrios, 891", - "City": "Sao Paulo", - "Region": "SP", - "PostalCode": 5487, - "Country": "Brazil", - "Phone": "(11) 555-1189", + "Address": "55 Grizzly Peak Rd.", + "City": "Butte", + "Region": "MT", + "PostalCode": 59801, + "Country": "USA", + "Phone": "(406) 555-5834", + "Fax": "(406) 555-8083", "Orders": [ { - "OrderID": 11068, - "EmployeeID": 8, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-11-01T00:00:00", + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", "ShipVia": 2, - "Freight": 81.75, - "ShipName": "Queen Cozinha", - "ShipAddress": "Alameda dos Canàrios, 891", - "ShipCity": "Sao Paulo", - "ShipRegion": "SP", - "ShipPostalCode": 5487, - "ShipCountry": "Brazil", + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { "ProductID": 28, "UnitPrice": 45.6, - "Quantity": 8, - "Discount": 0.16 + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 43, - "UnitPrice": 46, - "Quantity": 36, - "Discount": 0.16 + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 28, - "Discount": 0.16 + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 } ] - } - ], - "Fax": "(11) 555-1189" - }, - { - "CustomerID": "TORTU", - "Company": "Tortuga Restaurante", - "ContactName": "Miguel Angel Paolino", - "ContactTitle": "Owner", - "Address": "Avda. Azteca 123", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 555-2933", - "Fax": "(5) 555-2934", - "Orders": [ + }, { - "OrderID": 11069, - "EmployeeID": 1, - "OrderDate": "1998-05-04T00:00:00", - "RequiredDate": "1998-06-01T00:00:00", - "ShippedDate": "1998-05-06T00:00:00", - "ShipVia": 2, - "Freight": 15.67, - "ShipName": "Tortuga Restaurante", - "ShipAddress": "Avda. Azteca 123", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", "OrderDetails": [ { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 20, + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, "Discount": 0 } ] @@ -37688,507 +26818,503 @@ ] }, { - "CustomerID": "LEHMS", - "Company": "Lehmanns Marktstand", - "ContactName": "Renate Messner", + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", - "Address": "Magazinweg 7", - "City": "Frankfurt a.M.", - "PostalCode": 60528, + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, "Country": "Germany", - "Phone": "069-0245984", - "Fax": "069-0245874", + "Phone": "030-0074321", + "Fax": "030-0076545", "Orders": [ { - "OrderID": 11070, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-02T00:00:00", + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", "ShipVia": 1, - "Freight": 136, - "ShipName": "Lehmanns Marktstand", - "ShipAddress": "Magazinweg 7", - "ShipCity": "Frankfurt a.M.", - "ShipPostalCode": 60528, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 1, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, "UnitPrice": 18, - "Quantity": 40, - "Discount": 0.16 + "Quantity": 21, + "Discount": 0.25 }, { - "ProductID": 2, - "UnitPrice": 19, + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, "Quantity": 20, - "Discount": 0.16 - }, + "Discount": 0 + } + ] + }, + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 30, - "Discount": 0.16 + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 31, - "UnitPrice": 12.5, - "Quantity": 20, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "LILAS", - "Company": "LILA-Supermercado", - "ContactName": "Carlos González", - "ContactTitle": "Accounting Manager", - "Address": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "City": "Barquisimeto", - "Region": "Lara", - "PostalCode": 3508, - "Country": "Venezuela", - "Phone": "(9) 331-6954", - "Fax": "(9) 331-7256", - "Orders": [ + }, { - "OrderID": 11071, + "OrderID": 10835, "EmployeeID": 1, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-10T00:00:00", - "ShipVia": 1, - "Freight": 0.93, - "ShipName": "LILA-Supermercado", - "ShipAddress": "Carrera 52 con Ave. Bolívar #65-98 Llano Largo", - "ShipCity": "Barquisimeto", - "ShipRegion": "Lara", - "ShipPostalCode": 3508, - "ShipCountry": "Venezuela", + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", "OrderDetails": [ { - "ProductID": 7, - "UnitPrice": 30, + "ProductID": 59, + "UnitPrice": 55, "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, "Discount": 0.06 }, { - "ProductID": 13, - "UnitPrice": 6, - "Quantity": 10, + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + }, + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 } ] } ] }, { - "CustomerID": "ERNSH", - "Company": "Ernst Handel", - "ContactName": "Roland Mendel", - "ContactTitle": "Sales Manager", - "Address": "Kirchgasse 6", - "City": "Graz", - "PostalCode": 8010, - "Country": "Austria", - "Phone": "7675-3425", - "Fax": "7675-3426", + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", "Orders": [ { - "OrderID": 11072, - "EmployeeID": 4, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-08-02T00:00:00", - "ShipVia": 2, - "Freight": 258.64, - "ShipName": "Ernst Handel", - "ShipAddress": "Kirchgasse 6", - "ShipCity": "Graz", - "ShipPostalCode": 8010, - "ShipCountry": "Austria", + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 8, - "Discount": 0 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 40, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 50, - "UnitPrice": 16.25, - "Quantity": 22, + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, "Discount": 0 }, { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 130, + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "PERIC", - "Company": "Pericles Comidas clásicas", - "ContactName": "Guillermo Fernández", - "ContactTitle": "Sales Representative", - "Address": "Calle Dr. Jorge Cash 321", - "City": "México D.F.", - "PostalCode": 5033, - "Country": "Mexico", - "Phone": "(5) 552-3745", - "Fax": "(5) 545-3745", - "Orders": [ + }, { - "OrderID": 11073, - "EmployeeID": 2, - "OrderDate": "1998-05-05T00:00:00", - "RequiredDate": "1998-06-02T00:00:00", - "ShippedDate": "1998-06-15T00:00:00", - "ShipVia": 2, - "Freight": 24.95, - "ShipName": "Pericles Comidas clásicas", - "ShipAddress": "Calle Dr. Jorge Cash 321", - "ShipCity": "México D.F.", - "ShipPostalCode": 5033, - "ShipCountry": "Mexico", + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 11, - "UnitPrice": 21, - "Quantity": 10, + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, "Discount": 0 }, { - "ProductID": 24, - "UnitPrice": 4.5, + "ProductID": 76, + "UnitPrice": 18, "Quantity": 20, "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "SIMOB", - "Company": "Simons bistro", - "ContactName": "Jytte Petersen", - "ContactTitle": "Owner", - "Address": "Vinbæltet 34", - "City": "Kobenhavn", - "PostalCode": 1734, - "Country": "Denmark", - "Phone": "31 12 34 56", - "Fax": "31 13 35 57", - "Orders": [ + }, { - "OrderID": 11074, - "EmployeeID": 7, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-03T00:00:00", + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", "ShipVia": 2, - "Freight": 18.44, - "ShipName": "Simons bistro", - "ShipAddress": "Vinbæltet 34", - "ShipCity": "Kobenhavn", - "ShipPostalCode": 1734, - "ShipCountry": "Denmark", + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 16, - "UnitPrice": 17.45, + "ProductID": 29, + "UnitPrice": 123.79, "Quantity": 14, - "Discount": 0.06 + "Discount": 0 } ] } ] }, { - "CustomerID": "RICSU", - "Company": "Richter Supermarkt", - "ContactName": "Michael Holz", - "ContactTitle": "Sales Manager", - "Address": "Grenzacherweg 237", - "City": "Genève", - "PostalCode": 1203, - "Country": "Switzerland", - "Phone": "0897-034214", - "Fax": "0897-034215", + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", "Orders": [ { - "OrderID": 11075, - "EmployeeID": 8, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-05-03T00:00:00", - "ShipVia": 2, - "Freight": 6.19, - "ShipName": "Richter Supermarkt", - "ShipAddress": "Starenweg 5", - "ShipCity": "Genève", - "ShipPostalCode": 1204, - "ShipCountry": "Switzerland", + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 10, - "Discount": 0.16 - }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 30, - "Discount": 0.16 - }, + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + }, + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 76, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.16 + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 } ] - } - ] - }, - { - "CustomerID": "BONAP", - "Company": "Bon app", - "ContactName": "Laurence Lebihan", - "ContactTitle": "Owner", - "Address": "12, rue des Bouchers", - "City": "Marseille", - "PostalCode": 13008, - "Country": "France", - "Phone": "91.24.45.40", - "Fax": "91.24.45.41", - "Orders": [ + }, { - "OrderID": 11076, - "EmployeeID": 4, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-06-08T00:00:00", + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", "ShipVia": 2, - "Freight": 38.28, - "ShipName": "Bon app", - "ShipAddress": "12, rue des Bouchers", - "ShipCity": "Marseille", - "ShipPostalCode": 13008, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, "ShipCountry": "France", "OrderDetails": [ { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 }, { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 20, - "Discount": 0.25 + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 }, { - "ProductID": 19, - "UnitPrice": 9.2, + "ProductID": 69, + "UnitPrice": 36, "Quantity": 10, - "Discount": 0.25 + "Discount": 0 + } + ] + }, + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 } ] } ] }, { - "CustomerID": "RATTC", - "Company": "Rattlesnake Canyon Grocery", - "ContactName": "Paula Wilson", - "ContactTitle": "Sales Associate", - "Address": "2817 Milton Dr.", - "City": "Albuquerque", - "Region": "NM", - "PostalCode": 87110, - "Country": "USA", - "Phone": "(505) 555-5939", - "Fax": "(505) 555-3620", + "CustomerID": "LACOR", + "Company": "La corne de abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", "Orders": [ { - "OrderID": 11077, - "EmployeeID": 1, - "OrderDate": "1998-05-06T00:00:00", - "RequiredDate": "1998-06-03T00:00:00", - "ShippedDate": "1998-07-03T00:00:00", - "ShipVia": 2, - "Freight": 8.53, - "ShipName": "Rattlesnake Canyon Grocery", - "ShipAddress": "2817 Milton Dr.", - "ShipCity": "Albuquerque", - "ShipRegion": "NM", - "ShipPostalCode": 87110, - "ShipCountry": "USA", + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", "OrderDetails": [ - { - "ProductID": 2, - "UnitPrice": 19, - "Quantity": 24, - "Discount": 0.2 - }, - { - "ProductID": 3, - "UnitPrice": 10, - "Quantity": 4, - "Discount": 0 - }, - { - "ProductID": 4, - "UnitPrice": 22, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 6, - "UnitPrice": 25, - "Quantity": 1, - "Discount": 0.02 - }, { "ProductID": 7, "UnitPrice": 30, - "Quantity": 1, - "Discount": 0.06 - }, - { - "ProductID": 8, - "UnitPrice": 40, - "Quantity": 2, - "Discount": 0.1 - }, - { - "ProductID": 10, - "UnitPrice": 31, - "Quantity": 1, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 12, - "UnitPrice": 38, - "Quantity": 2, - "Discount": 0.06 + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 }, { - "ProductID": 13, - "UnitPrice": 6, + "ProductID": 70, + "UnitPrice": 15, "Quantity": 4, "Discount": 0 - }, - { - "ProductID": 14, - "UnitPrice": 23.25, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 16, - "UnitPrice": 17.45, - "Quantity": 2, - "Discount": 0.04 - }, + } + ] + }, + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { "ProductID": 20, "UnitPrice": 81, - "Quantity": 1, - "Discount": 0.04 - }, - { - "ProductID": 23, - "UnitPrice": 9, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 32, - "UnitPrice": 32, - "Quantity": 1, - "Discount": 0 - }, - { - "ProductID": 39, - "UnitPrice": 18, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 41, - "UnitPrice": 9.65, - "Quantity": 3, + "Quantity": 5, "Discount": 0 }, - { - "ProductID": 46, - "UnitPrice": 12, - "Quantity": 3, - "Discount": 0.02 - }, { "ProductID": 52, "UnitPrice": 7, - "Quantity": 2, - "Discount": 0 - }, - { - "ProductID": 55, - "UnitPrice": 24, - "Quantity": 2, + "Quantity": 5, "Discount": 0 }, { - "ProductID": 60, - "UnitPrice": 34, - "Quantity": 2, - "Discount": 0.06 - }, - { - "ProductID": 64, - "UnitPrice": 33.25, - "Quantity": 2, - "Discount": 0.04 - }, - { - "ProductID": 66, - "UnitPrice": 17, - "Quantity": 1, + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, "Discount": 0 - }, - { - "ProductID": 73, - "UnitPrice": 15, - "Quantity": 2, - "Discount": 0.0099999998 - }, + } + ] + }, + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne de abondance", + "ShipAddress": "67, avenue de Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ { - "ProductID": 75, - "UnitPrice": 7.75, - "Quantity": 4, + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, "Discount": 0 }, { - "ProductID": 77, - "UnitPrice": 13, - "Quantity": 2, + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, "Discount": 0 } ] diff --git a/samples/grids/hierarchical-grid/row-reorder/src/index.tsx b/samples/grids/hierarchical-grid/row-reorder/src/index.tsx index 4c3a51767d..60777ad43a 100644 --- a/samples/grids/hierarchical-grid/row-reorder/src/index.tsx +++ b/samples/grids/hierarchical-grid/row-reorder/src/index.tsx @@ -168,6 +168,9 @@ export default class Sample extends React.Component { public webHierarchicalGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.hierarchicalGrid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-hierarchical-grid-row")); diff --git a/samples/grids/tree-grid/advanced-filtering-style/src/index.css b/samples/grids/tree-grid/advanced-filtering-style/src/index.css index 335f12e448..e08a607ffd 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/src/index.css +++ b/samples/grids/tree-grid/advanced-filtering-style/src/index.css @@ -2,7 +2,11 @@ /* https://static.infragistics.com/xplatform/css/samples */ #treeGrid { - --ig-grid-filtering-row-background: #ffcd0f; - --ig-grid-filtering-background-or: #d83434; + --ig-query-builder-header-foreground: #512da8; + --ig-query-builder-color-expression-group-and: #eb0000; + --ig-query-builder-color-expression-group-or: #0000f3; + --ig-query-builder-subquery-header-background: var(--ig-gray-300); + --ig-query-builder-subquery-border-color: var(--ig-warn-500); + --ig-query-builder-subquery-border-radius: 4px; } diff --git a/samples/grids/tree-grid/column-moving-options/src/index.tsx b/samples/grids/tree-grid/column-moving-options/src/index.tsx index 6a0ed40c51..7a8f3edcfa 100644 --- a/samples/grids/tree-grid/column-moving-options/src/index.tsx +++ b/samples/grids/tree-grid/column-moving-options/src/index.tsx @@ -129,9 +129,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-moving-styles/src/index.tsx b/samples/grids/tree-grid/column-moving-styles/src/index.tsx index 6a0ed40c51..1e8fe50f62 100644 --- a/samples/grids/tree-grid/column-moving-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-moving-styles/src/index.tsx @@ -16,16 +16,16 @@ const mods: any[] = [ mods.forEach((m) => m.register()); export default class Sample extends React.Component { - private treeGrid: IgrTreeGrid - private treeGridRef(r: IgrTreeGrid) { - this.treeGrid = r; + private grid: IgrTreeGrid + private gridRef(r: IgrTreeGrid) { + this.grid = r; this.setState({}); } constructor(props: any) { super(props); - this.treeGridRef = this.treeGridRef.bind(this); + this.gridRef = this.gridRef.bind(this); } public render(): JSX.Element { @@ -35,8 +35,8 @@ export default class Sample extends React.Component {
{ public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } public toggleColumnPin(field: string) { - var treeGrid = this.treeGrid; + var treeGrid = this.grid; var col = treeGrid.getColumnByName(field); col.pinned = !col.pinned; treeGrid.markForCheck(); diff --git a/samples/grids/tree-grid/column-pinning-options/src/index.tsx b/samples/grids/tree-grid/column-pinning-options/src/index.tsx index 86e028fd27..fc7a9b64c8 100644 --- a/samples/grids/tree-grid/column-pinning-options/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-options/src/index.tsx @@ -100,9 +100,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx index 86e028fd27..fc7a9b64c8 100644 --- a/samples/grids/tree-grid/column-pinning-styles/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-styles/src/index.tsx @@ -100,9 +100,9 @@ export default class Sample extends React.Component { public webTreeGridPinHeaderTemplate = (props: {dataContext: IgrColumnTemplateContext}) => { const column = (props.dataContext as any).column; return ( -
- {column.field} - this.toggleColumnPin(column.field)}>📌 +
+ {column.field} + this.toggleColumnPin(column.field)}>📌
); } diff --git a/samples/grids/tree-grid/row-reorder/src/index.tsx b/samples/grids/tree-grid/row-reorder/src/index.tsx index db040f997c..e4060ce425 100644 --- a/samples/grids/tree-grid/row-reorder/src/index.tsx +++ b/samples/grids/tree-grid/row-reorder/src/index.tsx @@ -113,6 +113,9 @@ export default class Sample extends React.Component { public webTreeGridReorderRowHandler(args: IgrRowDragEndEventArgs): void { const ghostElement = args.detail.dragDirective.ghostElement; + if (!ghostElement) { + return; + } const dragElementPos = ghostElement.getBoundingClientRect(); const grid = this.treeGrid; const rows = Array.prototype.slice.call(document.getElementsByTagName("igx-tree-grid-row")); From ec07b19115f8ce3847a40d0885c19c48ad173f60 Mon Sep 17 00:00:00 2001 From: "HUSSAR-mtrela (Martin Trela)" Date: Fri, 5 Dec 2025 18:50:58 -0500 Subject: [PATCH 10/30] CDN update (#986) * cdn update * cdn update * cdn update * cdn path css * fix names * cdn gen data * Update index.tsx * cdn path to images * fixed names --- browser/index.html | 4 +- browser/templates/sample/ReadMe-dev.md | 6 +- .../templates/shared/src/CountryTreeData.ts | 2 +- .../shared/src/DataGridSharedData.ts | 30 +- .../shared/src/DockManagerSharedData.ts | 64 +- .../templates/shared/src/LiveFinancialData.ts | 2 +- browser/templates/shared/src/Products.ts | 4 +- .../templates/shared/src/SampleComboData.ts | 2 +- .../shared/src/SampleScatterStats.ts | 2 +- .../templates/shared/src/SampleTreeData.ts | 2 +- browser/templates/shared/src/WorldCities.ts | 14 +- .../templates/shared/src/WorldLocations.ts | 14 +- .../category-chart/annotations-all/index.html | 4 +- .../annotations-all/src/index.css | 2 +- .../annotations-callouts/index.html | 4 +- .../annotations-callouts/src/index.css | 2 +- .../annotations-crosshairs/index.html | 4 +- .../annotations-crosshairs/src/index.css | 2 +- .../annotations-custom/index.html | 4 +- .../annotations-custom/src/index.css | 2 +- .../annotations-final-value/index.html | 4 +- .../annotations-final-value/src/index.css | 2 +- .../annotations-highlighting/index.html | 4 +- .../annotations-highlighting/src/index.css | 2 +- .../category-chart/annotations/index.html | 2 +- .../area-chart-multiple-sources/index.html | 4 +- .../area-chart-multiple-sources/src/index.css | 2 +- .../area-chart-single-source/index.html | 4 +- .../area-chart-single-source/src/index.css | 2 +- .../area-chart-styling/index.html | 4 +- .../area-chart-styling/src/index.css | 2 +- .../charts/category-chart/axis-gap/index.html | 4 +- .../category-chart/axis-gap/src/index.css | 2 +- .../category-chart/axis-gridlines/index.html | 4 +- .../axis-gridlines/src/index.css | 2 +- .../category-chart/axis-inverted/index.html | 4 +- .../axis-inverted/src/index.css | 2 +- .../category-chart/axis-labels/index.html | 4 +- .../category-chart/axis-labels/src/index.css | 2 +- .../category-chart/axis-locations/index.html | 4 +- .../axis-locations/src/index.css | 2 +- .../category-chart/axis-options/index.html | 4 +- .../category-chart/axis-options/src/index.css | 2 +- .../category-chart/axis-overlap/index.html | 4 +- .../category-chart/axis-overlap/src/index.css | 2 +- .../category-chart/axis-range/index.html | 4 +- .../category-chart/axis-range/src/index.css | 2 +- .../category-chart/axis-tickmarks/index.html | 4 +- .../axis-tickmarks/src/index.css | 2 +- .../category-chart/axis-titles/index.html | 4 +- .../category-chart/axis-titles/src/index.css | 2 +- .../chart-highlight-filter/index.html | 4 +- .../chart-highlight-filter/src/index.css | 2 +- .../column-chart-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../column-chart-single-source/index.html | 4 +- .../column-chart-single-source/src/index.css | 2 +- .../column-chart-styling/index.html | 4 +- .../column-chart-styling/src/index.css | 2 +- .../column-chart-with-highlighting/index.html | 2 +- .../column-chart-with-tooltips/index.html | 4 +- .../column-chart-with-tooltips/src/index.css | 2 +- .../custom-selection/index.html | 4 +- .../custom-selection/src/index.css | 2 +- .../data-aggregations/index.html | 4 +- .../data-aggregations/src/index.css | 2 +- .../category-chart/data-filter/index.html | 4 +- .../category-chart/data-filter/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../category-chart/data-legend/index.html | 4 +- .../category-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-positioning/index.html | 4 +- .../data-tooltip-positioning/src/index.css | 2 +- .../category-chart/data-tooltip/index.html | 4 +- .../category-chart/data-tooltip/src/index.css | 2 +- .../format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../category-chart/high-frequency/index.html | 2 +- .../category-chart/high-volume/index.html | 2 +- .../highlighting-behavior/index.html | 4 +- .../highlighting-behavior/src/index.css | 2 +- .../highlighting-mode/index.html | 4 +- .../highlighting-mode/src/index.css | 2 +- .../category-chart/highlighting/index.html | 2 +- .../legend-highlighting/index.html | 4 +- .../legend-highlighting/src/index.css | 2 +- .../line-chart-multiple-sources/index.html | 4 +- .../line-chart-multiple-sources/src/index.css | 2 +- .../line-chart-single-source/index.html | 4 +- .../line-chart-single-source/src/index.css | 2 +- .../line-chart-styling/index.html | 4 +- .../line-chart-styling/src/index.css | 2 +- .../line-chart-with-animations/index.html | 2 +- .../line-chart-with-annotations/index.html | 2 +- .../category-chart/marker-options/index.html | 4 +- .../marker-options/src/index.css | 2 +- .../marker-templates/index.html | 2 +- .../charts/category-chart/overview/index.html | 4 +- .../category-chart/overview/src/index.css | 2 +- .../point-chart-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../point-chart-single-source/index.html | 4 +- .../point-chart-single-source/src/index.css | 2 +- .../point-chart-styling/index.html | 4 +- .../point-chart-styling/src/index.css | 2 +- .../selection-matcher/index.html | 4 +- .../selection-matcher/src/index.css | 2 +- .../category-chart/selection-modes/index.html | 4 +- .../selection-modes/src/index.css | 2 +- .../selection-multiple-modes/index.html | 4 +- .../selection-multiple-modes/src/index.css | 2 +- .../spline-area-multiple-sources/index.html | 4 +- .../src/index.css | 2 +- .../spline-area-single-source/index.html | 4 +- .../spline-area-single-source/src/index.css | 2 +- .../spline-area-styling/index.html | 4 +- .../spline-area-styling/src/index.css | 2 +- .../spline-multiple-sources/index.html | 4 +- .../spline-multiple-sources/src/index.css | 2 +- .../spline-single-source/index.html | 4 +- .../spline-single-source/src/index.css | 2 +- .../category-chart/spline-styling/index.html | 4 +- .../spline-styling/src/index.css | 2 +- .../category-chart/stack-columns/index.html | 2 +- .../step-area-multiple-sources/index.html | 4 +- .../step-area-multiple-sources/src/index.css | 2 +- .../step-area-single-source/index.html | 4 +- .../step-area-single-source/src/index.css | 2 +- .../step-area-styling/index.html | 4 +- .../step-area-styling/src/index.css | 2 +- .../step-line-multiple-sources/index.html | 4 +- .../step-line-multiple-sources/src/index.css | 2 +- .../step-line-single-source/index.html | 4 +- .../step-line-single-source/src/index.css | 2 +- .../step-line-styling/index.html | 4 +- .../step-line-styling/src/index.css | 2 +- .../tooltip-template/index.html | 2 +- .../category-chart/tooltip-types/index.html | 2 +- .../category-chart/trendline/index.html | 2 +- .../category-chart/value-lines/index.html | 4 +- .../category-chart/value-lines/src/index.css | 2 +- .../dashboard-tile/chart-dashboard/index.html | 4 +- .../chart-dashboard/src/index.css | 2 +- .../financial-dashboard/index.html | 4 +- .../financial-dashboard/src/index.css | 2 +- .../dashboard-tile/gauge-dashboard/index.html | 4 +- .../gauge-dashboard/src/index.css | 2 +- .../local-data-source-dashboard/index.html | 4 +- .../local-data-source-dashboard/src/index.css | 2 +- .../dashboard-tile/map-dashboard/index.html | 4 +- .../map-dashboard/src/index.css | 2 +- .../dashboard-tile/pie-dashboard/index.html | 4 +- .../pie-dashboard/src/index.css | 2 +- .../data-chart/annotations-custom/index.html | 4 +- .../annotations-custom/src/index.css | 2 +- .../axis-annotations-corner-radius/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/axis-annotations/index.html | 2 +- .../data-chart/axis-crossing/index.html | 2 +- .../data-chart/axis-label-rotation/index.html | 4 +- .../axis-label-rotation/src/index.css | 2 +- .../data-chart/axis-locations/index.html | 2 +- .../data-chart/axis-min-max-gap/index.html | 4 +- .../data-chart/axis-min-max-gap/src/index.css | 2 +- .../data-chart/axis-settings/index.html | 2 +- .../charts/data-chart/axis-sharing/index.html | 2 +- .../charts/data-chart/axis-types/index.html | 2 +- .../bar-chart-multiple-sources/index.html | 4 +- .../bar-chart-multiple-sources/src/index.css | 2 +- .../bar-chart-overlapping/index.html | 4 +- .../bar-chart-overlapping/src/index.css | 2 +- .../bar-chart-single-source/index.html | 4 +- .../bar-chart-single-source/src/index.css | 2 +- .../data-chart/bar-chart-styling/index.html | 4 +- .../bar-chart-styling/src/index.css | 2 +- .../callout-layer-styling/index.html | 4 +- .../callout-layer-styling/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../chart-highlight-filter/index.html | 4 +- .../chart-highlight-filter/src/index.css | 2 +- .../data-chart/chart-navigation/index.html | 2 +- .../data-chart/chart-overview/index.html | 2 +- .../chart-overview/src/SampleScatterStats.ts | 2 +- .../data-chart/chart-performance/index.html | 2 +- .../chart-synchronization/index.html | 2 +- .../charts/data-chart/chart-titles/index.html | 2 +- .../data-chart/composite-chart/index.html | 2 +- .../crosshair-layer-styling/index.html | 2 +- .../custom-drawing-annotations/index.html | 2 +- .../data-chart/custom-editing-data/index.html | 2 +- .../data-chart/dash-array-axes/index.html | 4 +- .../data-chart/dash-array-axes/src/index.css | 2 +- .../data-chart/dash-array-series/index.html | 4 +- .../dash-array-series/src/index.css | 2 +- .../dash-array-tickmarks/index.html | 4 +- .../dash-array-tickmarks/src/index.css | 2 +- .../dash-array-trendline/index.html | 4 +- .../dash-array-trendline/src/index.css | 2 +- .../data-annotation-band-layer/index.html | 4 +- .../data-annotation-band-layer/src/index.css | 2 +- .../data-annotation-line-layer/index.html | 4 +- .../data-annotation-line-layer/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-annotation-rect-layer/index.html | 4 +- .../data-annotation-rect-layer/src/index.css | 2 +- .../data-annotation-slice-layer/index.html | 4 +- .../data-annotation-slice-layer/src/index.css | 2 +- .../data-annotation-strip-layer/index.html | 4 +- .../data-annotation-strip-layer/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-legend-grouping/index.html | 4 +- .../data-legend-grouping/src/index.css | 2 +- .../data-chart/data-legend-styling/index.html | 4 +- .../data-legend-styling/src/index.css | 2 +- .../charts/data-chart/data-legend/index.html | 4 +- .../data-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-grouping/index.html | 4 +- .../data-tooltip-grouping/src/index.css | 2 +- .../data-tooltip-styling/index.html | 4 +- .../data-tooltip-styling/src/index.css | 2 +- .../charts/data-chart/data-tooltip/index.html | 4 +- .../data-chart/data-tooltip/src/index.css | 2 +- .../final-value-layer-styling/index.html | 2 +- .../financial-price-series/index.html | 4 +- .../financial-price-series/src/index.css | 2 +- .../data-chart/format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../data-chart/itemized-bar-chart/index.html | 4 +- .../itemized-bar-chart/src/index.css | 2 +- .../itemized-column-chart/index.html | 4 +- .../itemized-column-chart/src/index.css | 2 +- .../itemized-stacked-bar-chart/index.html | 4 +- .../itemized-stacked-bar-chart/src/index.css | 2 +- .../itemized-stacked-column-chart/index.html | 4 +- .../src/index.css | 2 +- samples/charts/data-chart/legends/index.html | 2 +- .../polar-area-chart-styling/index.html | 4 +- .../polar-area-chart-styling/src/index.css | 2 +- .../data-chart/polar-area-chart/index.html | 4 +- .../data-chart/polar-area-chart/src/index.css | 2 +- .../data-chart/polar-chart-types/index.html | 2 +- .../data-chart/polar-line-chart/index.html | 4 +- .../data-chart/polar-line-chart/src/index.css | 2 +- .../data-chart/polar-scatter-chart/index.html | 4 +- .../polar-scatter-chart/src/index.css | 2 +- .../polar-spline-area-chart/index.html | 4 +- .../polar-spline-area-chart/src/index.css | 2 +- .../data-chart/polar-spline-chart/index.html | 4 +- .../polar-spline-chart/src/index.css | 2 +- .../radial-area-chart-styling/index.html | 4 +- .../radial-area-chart-styling/src/index.css | 2 +- .../data-chart/radial-area-chart/index.html | 4 +- .../radial-area-chart/src/index.css | 2 +- .../data-chart/radial-chart-types/index.html | 2 +- .../radial-column-chart-selection/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/radial-column-chart/index.html | 4 +- .../radial-column-chart/src/index.css | 2 +- .../data-chart/radial-label-mode/index.html | 4 +- .../radial-label-mode/src/index.css | 2 +- .../data-chart/radial-line-chart/index.html | 4 +- .../radial-line-chart/src/index.css | 2 +- .../data-chart/radial-pie-chart/index.html | 4 +- .../data-chart/radial-pie-chart/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-chart/range-area-chart/index.html | 4 +- .../data-chart/range-area-chart/src/index.css | 2 +- .../data-chart/range-column-chart/index.html | 4 +- .../range-column-chart/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../scatter-bubble-chart-styling/index.html | 4 +- .../src/index.css | 2 +- .../data-chart/scatter-line-chart/index.html | 4 +- .../scatter-line-chart/src/index.css | 2 +- .../scatter-line-threshold/index.html | 4 +- .../scatter-line-threshold/src/index.css | 2 +- .../data-chart/scatter-point-chart/index.html | 4 +- .../scatter-point-chart/src/index.css | 2 +- .../scatter-spline-chart/index.html | 4 +- .../scatter-spline-chart/src/index.css | 2 +- .../data-chart/selection-matcher/index.html | 4 +- .../selection-matcher/src/index.css | 2 +- .../data-chart/series-annotations/index.html | 2 +- .../data-chart/series-highlighting/index.html | 2 +- .../series-marker-template/index.html | 2 +- .../data-chart/series-markers/index.html | 2 +- .../data-chart/series-tooltips/index.html | 2 +- .../data-chart/series-trendlines/index.html | 2 +- .../series-value-overlay/index.html | 2 +- .../stacked-100-area-chart/index.html | 4 +- .../stacked-100-area-chart/src/index.css | 2 +- .../stacked-100-bar-chart/index.html | 4 +- .../stacked-100-bar-chart/src/index.css | 2 +- .../stacked-100-column-chart/index.html | 4 +- .../stacked-100-column-chart/src/index.css | 2 +- .../stacked-100-line-chart/index.html | 4 +- .../stacked-100-line-chart/src/index.css | 2 +- .../stacked-100-spline-area-chart/index.html | 4 +- .../src/index.css | 2 +- .../stacked-100-spline-chart/index.html | 4 +- .../stacked-100-spline-chart/src/index.css | 2 +- .../data-chart/stacked-area-chart/index.html | 4 +- .../stacked-area-chart/src/index.css | 2 +- .../data-chart/stacked-bar-chart/index.html | 4 +- .../stacked-bar-chart/src/index.css | 2 +- .../data-chart/stacked-chart-types/index.html | 2 +- .../stacked-column-chart/index.html | 4 +- .../stacked-column-chart/src/index.css | 2 +- .../data-chart/stacked-line-chart/index.html | 4 +- .../stacked-line-chart/src/index.css | 2 +- .../stacked-spline-area-chart/index.html | 4 +- .../stacked-spline-area-chart/src/index.css | 2 +- .../stacked-spline-chart/index.html | 4 +- .../stacked-spline-chart/src/index.css | 2 +- .../data-chart/tooltip-template/index.html | 2 +- .../data-chart/transition-event/index.html | 4 +- .../data-chart/transition-event/src/index.css | 2 +- .../data-chart/trendline-layer/index.html | 4 +- .../data-chart/trendline-layer/src/index.css | 2 +- .../index.html | 2 +- .../index.html | 2 +- .../type-financial-indicators-line/index.html | 2 +- .../type-financial-ohlc-series/index.html | 2 +- .../type-financial-overlays/index.html | 2 +- .../type-financial-series/index.html | 2 +- .../type-range-area-series/index.html | 2 +- .../type-range-column-series/index.html | 2 +- .../data-chart/type-range-series/index.html | 2 +- .../type-scatter-area-series/index.html | 2 +- .../type-scatter-bubble-series/index.html | 2 +- .../src/SampleScatterStats.ts | 2 +- .../type-scatter-contour-series/index.html | 2 +- .../type-scatter-hd-series/index.html | 2 +- .../type-scatter-polygon-series/index.html | 4 +- .../type-scatter-polyline-series/index.html | 4 +- .../data-chart/type-scatter-series/index.html | 2 +- .../src/SampleScatterStats.ts | 2 +- .../data-chart/type-shape-series/index.html | 2 +- .../user-annotation-layer/index.html | 4 +- .../user-annotation-layer/src/index.css | 2 +- .../data-chart/waterfall-chart/index.html | 4 +- .../data-chart/waterfall-chart/src/index.css | 2 +- .../animation-replay/index.html | 4 +- .../animation-replay/src/index.css | 2 +- .../data-pie-chart/animation/index.html | 4 +- .../data-pie-chart/animation/src/index.css | 2 +- .../highlight-filter/index.html | 4 +- .../highlight-filter/src/index.css | 2 +- .../data-pie-chart/highlighting/index.html | 4 +- .../data-pie-chart/highlighting/src/index.css | 2 +- .../charts/data-pie-chart/legend/index.html | 4 +- .../data-pie-chart/legend/src/index.css | 2 +- .../charts/data-pie-chart/others/index.html | 4 +- .../data-pie-chart/others/src/index.css | 2 +- .../charts/data-pie-chart/overview/index.html | 4 +- .../data-pie-chart/overview/src/index.css | 2 +- .../data-pie-chart/selection/index.html | 4 +- .../data-pie-chart/selection/src/index.css | 2 +- .../doughnut-chart/animation/index.html | 2 +- .../doughnut-chart/explosion/index.html | 2 +- .../charts/doughnut-chart/legend/index.html | 4 +- .../doughnut-chart/legend/src/index.css | 2 +- .../charts/doughnut-chart/overview/index.html | 4 +- .../doughnut-chart/overview/src/index.css | 2 +- .../charts/doughnut-chart/rings/index.html | 4 +- .../charts/doughnut-chart/rings/src/index.css | 2 +- .../doughnut-chart/selection/index.html | 2 +- .../financial-chart/annotations/index.html | 2 +- .../financial-chart/axis-types/index.html | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-legend-styling-props/index.html | 4 +- .../data-legend-styling-props/src/index.css | 2 +- .../financial-chart/data-legend/index.html | 4 +- .../financial-chart/data-legend/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-tooltip-styling-props/index.html | 4 +- .../data-tooltip-styling-props/src/index.css | 2 +- .../financial-chart/data-tooltip/index.html | 4 +- .../data-tooltip/src/index.css | 2 +- .../format-specifiers/index.html | 4 +- .../format-specifiers/src/index.css | 2 +- .../financial-chart/high-frequency/index.html | 2 +- .../financial-chart/high-volume/index.html | 2 +- .../indicator-customization/index.html | 2 +- .../indicator-types/index.html | 2 +- .../financial-chart/multiple-data/index.html | 2 +- .../financial-chart/overview/index.html | 2 +- .../charts/financial-chart/panes/index.html | 2 +- .../financial-chart/performance/index.html | 2 +- .../financial-chart/scrollbars/index.html | 4 +- .../financial-chart/scrollbars/src/index.css | 2 +- .../stock-index-chart/index.html | 2 +- .../charts/financial-chart/styling/index.html | 2 +- .../charts/financial-chart/titles/index.html | 2 +- .../financial-chart/tooltip-types/index.html | 2 +- .../financial-chart/trendlines/index.html | 2 +- .../financial-chart/volume-types/index.html | 2 +- samples/charts/pie-chart/animation/index.html | 2 +- samples/charts/pie-chart/explosion/index.html | 2 +- samples/charts/pie-chart/legend/index.html | 4 +- samples/charts/pie-chart/legend/src/index.css | 2 +- samples/charts/pie-chart/others/index.html | 4 +- samples/charts/pie-chart/others/src/index.css | 2 +- samples/charts/pie-chart/overview/index.html | 4 +- .../charts/pie-chart/overview/src/index.css | 2 +- samples/charts/pie-chart/selection/index.html | 2 +- samples/charts/pie-chart/styling/index.html | 4 +- .../charts/pie-chart/styling/src/index.css | 2 +- .../charts/sparkline/display-area/index.html | 4 +- .../sparkline/display-area/src/index.css | 2 +- .../sparkline/display-column/index.html | 4 +- .../sparkline/display-column/src/index.css | 2 +- .../charts/sparkline/display-lines/index.html | 4 +- .../sparkline/display-lines/src/index.css | 2 +- .../charts/sparkline/display-types/index.html | 2 +- .../sparkline/display-winloss/index.html | 4 +- .../sparkline/display-winloss/src/index.css | 2 +- samples/charts/sparkline/grid/index.html | 2 +- samples/charts/sparkline/grid/src/Products.ts | 4 +- samples/charts/sparkline/markers/index.html | 4 +- .../charts/sparkline/markers/src/index.css | 2 +- .../charts/sparkline/normal-range/index.html | 4 +- .../sparkline/normal-range/src/index.css | 2 +- .../charts/sparkline/trendlines/index.html | 4 +- .../charts/sparkline/trendlines/src/index.css | 2 +- .../sparkline/unknown-values/index.html | 4 +- .../sparkline/unknown-values/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../actions-built-in-data-chart/index.html | 4 +- .../actions-built-in-data-chart/src/index.css | 2 +- .../toolbar/color-editor-support/index.html | 4 +- .../color-editor-support/src/index.css | 2 +- samples/charts/toolbar/custom-tool/index.html | 4 +- .../charts/toolbar/custom-tool/src/index.css | 2 +- .../layout-actions-for-data-chart/index.html | 4 +- .../src/index.css | 2 +- .../layout-in-vertical-orientation/index.html | 4 +- .../src/index.css | 2 +- samples/charts/toolbar/theming/index.html | 4 +- samples/charts/toolbar/theming/src/index.css | 2 +- samples/charts/tree-map/events/index.html | 2 +- .../tree-map/events/src/CountryTreeData.ts | 2 +- .../highlighting-percent-based/index.html | 4 +- .../highlighting-percent-based/src/index.css | 2 +- .../charts/tree-map/highlighting/index.html | 4 +- .../tree-map/highlighting/src/index.css | 2 +- samples/charts/tree-map/layout/index.html | 4 +- samples/charts/tree-map/layout/src/index.css | 2 +- samples/charts/tree-map/overview/index.html | 4 +- .../charts/tree-map/overview/src/index.css | 2 +- samples/charts/tree-map/styling/index.html | 4 +- samples/charts/tree-map/styling/src/index.css | 2 +- samples/charts/zoomslider/overview/index.html | 2 +- .../overview/src/SampleScatterStats.ts | 2 +- .../multi-column-combobox/overview/index.html | 2 +- .../overview/src/SampleComboData.ts | 2 +- .../editors/x-date-picker/overview/index.html | 2 +- .../editors/x-date-picker/range/index.html | 2 +- .../operations-on-workbooks/index.html | 2 +- .../operations-on-worksheets/index.html | 2 +- .../excel/excel-library/overview/index.html | 2 +- .../working-with-cells/index.html | 2 +- .../working-with-charts/index.html | 2 +- .../working-with-sparklines/index.html | 2 +- .../excel/spreadsheet/activation/index.html | 2 +- .../spreadsheet/activation/src/index.tsx | 2 +- .../spreadsheet/adapter-chart/index.html | 2 +- .../spreadsheet/adapter-chart/src/index.tsx | 2 +- .../spreadsheet/adapter-combo/index.html | 2 +- .../excel/spreadsheet/clipboard/index.html | 2 +- .../excel/spreadsheet/clipboard/src/index.tsx | 2 +- samples/excel/spreadsheet/commands/index.html | 2 +- .../excel/spreadsheet/commands/src/index.tsx | 2 +- .../conditional-formatting/index.html | 2 +- .../conditional-formatting/src/index.tsx | 2 +- .../spreadsheet/config-options/index.html | 2 +- .../spreadsheet/config-options/src/index.tsx | 2 +- .../spreadsheet/data-validation/index.html | 2 +- .../spreadsheet/filter-dialog/index.html | 2 +- .../spreadsheet/filter-dialog/src/index.tsx | 2 +- .../spreadsheet/format-dialog/index.html | 2 +- .../spreadsheet/format-dialog/src/index.tsx | 2 +- .../excel/spreadsheet/hyperlinks/index.html | 2 +- .../spreadsheet/hyperlinks/src/index.tsx | 2 +- samples/excel/spreadsheet/overview/index.html | 4 +- .../excel/spreadsheet/overview/src/index.tsx | 2 +- .../excel/spreadsheet/sort-dialog/index.html | 2 +- .../spreadsheet/sort-dialog/src/index.tsx | 2 +- .../gauges/bullet-graph/animation/index.html | 2 +- .../gauges/bullet-graph/background/index.html | 2 +- .../bullet-graph/highlight-needle/index.html | 2 +- samples/gauges/bullet-graph/labels/index.html | 2 +- .../gauges/bullet-graph/measures/index.html | 2 +- samples/gauges/bullet-graph/ranges/index.html | 2 +- samples/gauges/bullet-graph/scale/index.html | 2 +- .../gauges/bullet-graph/tickmarks/index.html | 2 +- .../bullet-graph/type-filled/index.html | 2 +- .../bullet-graph/type-horizontal/index.html | 2 +- .../bullet-graph/type-reversed/index.html | 2 +- .../bullet-graph/type-segmented/index.html | 2 +- .../bullet-graph/type-vertical/index.html | 2 +- .../gauges/linear-gauge/animation/index.html | 2 +- .../gauges/linear-gauge/backing/index.html | 2 +- .../linear-gauge/highlight-needle/index.html | 2 +- samples/gauges/linear-gauge/labels/index.html | 2 +- samples/gauges/linear-gauge/needle/index.html | 2 +- samples/gauges/linear-gauge/ranges/index.html | 2 +- samples/gauges/linear-gauge/scale/index.html | 2 +- .../gauges/linear-gauge/tickmarks/index.html | 2 +- .../linear-gauge/type-curved/index.html | 2 +- .../linear-gauge/type-filled/index.html | 2 +- .../linear-gauge/type-horizontal/index.html | 2 +- .../linear-gauge/type-multi-range/index.html | 2 +- .../linear-gauge/type-multi-scale/index.html | 2 +- .../linear-gauge/type-segmented/index.html | 2 +- .../linear-gauge/type-vertical/index.html | 2 +- .../gauges/radial-gauge/animation/index.html | 2 +- .../gauges/radial-gauge/backing/index.html | 2 +- .../radial-gauge/highlight-needle/index.html | 2 +- samples/gauges/radial-gauge/labels/index.html | 2 +- samples/gauges/radial-gauge/needle/index.html | 2 +- .../radial-gauge/optical-scaling/index.html | 2 +- samples/gauges/radial-gauge/ranges/index.html | 2 +- samples/gauges/radial-gauge/scale/index.html | 2 +- .../gauges/radial-gauge/tickmarks/index.html | 2 +- .../radial-gauge/type-column/index.html | 2 +- .../radial-gauge/type-curved/index.html | 2 +- .../radial-gauge/type-direction/index.html | 2 +- .../gauges/radial-gauge/type-full/index.html | 2 +- .../gauges/radial-gauge/type-half/index.html | 2 +- .../radial-gauge/type-quatre/index.html | 2 +- .../gauges/radial-gauge/type-ring/index.html | 2 +- .../radial-gauge/type-segmented/index.html | 2 +- .../gauges/radial-gauge/type-semi/index.html | 2 +- .../grids/data-grid/accessibility/index.html | 2 +- .../data-grid/accessibility/src/index.tsx | 4 +- .../data-grid/binding-data-service/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/binding-live-data/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/binding-local-data/index.html | 2 +- .../binding-local-data/src/index.tsx | 4 +- .../data-grid/binding-remote-data/index.html | 2 +- .../data-grid/cell-activation/index.html | 2 +- .../cell-activation/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/cell-editing/index.html | 2 +- .../cell-editing/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/cell-merging/index.html | 2 +- .../cell-merging/src/LiveFinancialData.ts | 2 +- .../grids/data-grid/cell-selection/index.html | 2 +- .../cell-selection/src/DataGridSharedData.ts | 30 +- .../data-grid/column-animation/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-chooser-picker/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-chooser-toolbar/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-filter-expressions/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-filter-operands/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../data-grid/column-filtering/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-moving/index.html | 2 +- .../column-moving/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-options/index.html | 2 +- .../column-options/src/DataGridSharedData.ts | 30 +- .../column-pinning-picker/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../column-pinning-toolbar/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../data-grid/column-resizing/index.html | 2 +- .../column-resizing/src/DataGridSharedData.ts | 30 +- .../data-grid/column-scrolling/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-sorting/index.html | 2 +- .../column-sorting/src/DataGridSharedData.ts | 30 +- .../data-grid/column-summaries/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/column-types/index.html | 2 +- .../column-types/src/DataGridSharedData.ts | 30 +- .../data-grid/load-save-layout/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/localization/index.html | 2 +- .../localization/src/DataGridSharedData.ts | 24 +- samples/grids/data-grid/overview/index.html | 2 +- .../overview/src/DataGridSharedData.ts | 30 +- samples/grids/data-grid/pager/index.html | 2 +- samples/grids/data-grid/pager/src/index.tsx | 4 +- .../grids/data-grid/performance/index.html | 2 +- .../grids/data-grid/performance/src/index.tsx | 65 +- .../row-group-descriptions/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- .../grids/data-grid/row-grouping/index.html | 2 +- .../row-grouping/src/DataGridSharedData.ts | 30 +- .../data-grid/row-highlighting/index.html | 2 +- .../src/DataGridSharedData.ts | 30 +- samples/grids/data-grid/row-paging/index.html | 2 +- .../row-paging/src/DataGridSharedData.ts | 30 +- .../grids/data-grid/row-pinning/index.html | 2 +- .../row-pinning/src/DataGridSharedData.ts | 30 +- .../row-selection/src/DataGridSharedData.ts | 30 +- .../type-comparison-table/index.html | 2 +- .../data-grid/type-heatmap-table/index.html | 2 +- .../data-grid/type-marketing-table/index.html | 2 +- .../src/LiveFinancialData.ts | 2 +- .../data-grid/type-matrix-table/index.html | 2 +- .../data-grid/type-periodic-table/index.html | 2 +- .../grid-lite/column-config-basic/index.html | 4 +- .../column-config-dynamic/index.html | 4 +- .../column-config-headers/index.html | 4 +- .../grids/grid-lite/data-binding/index.html | 4 +- .../filtering-config-events/index.html | 4 +- .../filtering-config-remote/index.html | 4 +- .../grid-lite/filtering-config/index.html | 4 +- samples/grids/grid-lite/overview/index.html | 4 +- .../grid-lite/sort-config-events/index.html | 4 +- .../grid-lite/sort-config-grid/index.html | 4 +- .../grid-lite/sort-config-pipeline/index.html | 4 +- .../grid-lite/sort-config-sample/index.html | 4 +- .../grid-lite/styling-custom-theme/index.html | 4 +- samples/grids/grid/action-strip/index.html | 4 +- samples/grids/grid/action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-options/src/index.tsx | 4 +- .../grid/advanced-filtering-style/index.html | 4 +- .../advanced-filtering-style/src/index.css | 2 +- .../advanced-filtering-style/src/index.tsx | 4 +- .../grid/binding-composite-data/index.html | 4 +- .../grid/binding-composite-data/src/index.css | 2 +- .../grids/grid/binding-crud-data/index.html | 4 +- .../grid/binding-crud-data/src/index.css | 2 +- .../grid/binding-nested-data-1/index.html | 4 +- .../grid/binding-nested-data-1/src/index.css | 2 +- .../grid/binding-nested-data-1/src/index.tsx | 3 +- samples/grids/grid/cascading-combo/index.html | 4 +- .../grids/grid/cascading-combo/src/index.css | 2 +- .../grids/grid/cell-editing-sample/index.html | 4 +- .../grid/cell-editing-sample/src/index.css | 2 +- .../grid/cell-editing-styling/index.html | 4 +- .../grid/cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../grids/grid/cell-merge/public/index.html | 4 +- samples/grids/grid/cell-merge/src/index.css | 2 +- samples/grids/grid/cell-merge/src/index.tsx | 4 +- .../grids/grid/cell-selection-mode/index.html | 4 +- .../grid/cell-selection-mode/src/index.css | 2 +- .../grid/cell-selection-style/index.html | 4 +- .../grid/cell-selection-style/src/index.css | 2 +- .../grids/grid/change-icons-custom/index.html | 4 +- .../grid/change-icons-custom/src/index.css | 2 +- .../grid/clipboard-operations/index.html | 4 +- .../grid/clipboard-operations/src/index.css | 2 +- .../grids/grid/column-auto-sizing/index.html | 4 +- .../grid/column-auto-sizing/src/index.css | 2 +- .../grid/column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../grids/grid/column-data-types/index.html | 4 +- .../grid/column-data-types/src/index.css | 2 +- .../grid/column-hiding-options/index.html | 4 +- .../grid/column-hiding-options/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../grid/column-hiding-toolbar/index.html | 4 +- .../grid/column-hiding-toolbar/src/index.css | 2 +- .../grid/column-moving-options/index.html | 4 +- .../grid/column-moving-options/src/index.css | 2 +- .../grid/column-moving-styles/index.html | 4 +- .../grid/column-moving-styles/src/index.css | 2 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../grid/column-pinning-options/index.html | 4 +- .../grid/column-pinning-options/src/index.css | 2 +- .../grid/column-pinning-right-side/index.html | 4 +- .../src/AthletesDataExtended.ts | 370 +++---- .../column-pinning-right-side/src/index.css | 2 +- .../grid/column-pinning-styles/index.html | 4 +- .../grid/column-pinning-styles/src/index.css | 2 +- samples/grids/grid/column-pinning/index.html | 4 +- .../grids/grid/column-pinning/src/index.css | 2 +- .../grid/column-resize-styling/index.html | 4 +- .../column-resize-styling/src/AthletesData.ts | 370 +++---- .../grid/column-resize-styling/src/index.css | 2 +- samples/grids/grid/column-resizing/index.html | 4 +- .../grids/grid/column-resizing/src/index.css | 2 +- .../grid/column-selection-group/index.html | 4 +- .../grid/column-selection-group/src/index.css | 2 +- .../grid/column-selection-mode/index.html | 4 +- .../grid/column-selection-mode/src/index.css | 2 +- .../grid/column-selection-styles/index.html | 4 +- .../column-selection-styles/src/index.css | 2 +- .../grid/column-sorting-indicators/index.html | 4 +- .../column-sorting-indicators/src/index.css | 2 +- .../grid/column-sorting-options/index.html | 4 +- .../grid/column-sorting-options/src/index.css | 2 +- .../grid/column-sorting-style/index.html | 4 +- .../grid/column-sorting-style/src/index.css | 2 +- .../grid/conditional-cell-style-1/index.html | 4 +- .../src/AthletesData.ts | 370 +++---- .../conditional-cell-style-1/src/index.css | 2 +- .../grid/conditional-cell-style-2/index.html | 4 +- .../src/AthletesData.ts | 370 +++---- .../conditional-cell-style-2/src/index.css | 2 +- .../grid/conditional-row-selectors/index.html | 4 +- .../conditional-row-selectors/src/index.css | 2 +- .../grids/grid/custom-context-menu/index.html | 4 +- .../grid/custom-context-menu/src/index.css | 2 +- .../data-batch-editing-actions/index.html | 4 +- .../data-batch-editing-actions/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- samples/grids/grid/data-searching/index.html | 4 +- .../grids/grid/data-searching/src/index.css | 2 +- .../grid/data-summary-formatter/index.html | 4 +- .../grid/data-summary-formatter/src/index.css | 2 +- .../grid/data-summary-options/index.html | 4 +- .../grid/data-summary-options/src/index.css | 2 +- .../grid/data-summary-template/index.html | 4 +- .../grid/data-summary-template/src/index.css | 2 +- .../grid/data-validation-style/index.html | 4 +- .../grid/data-validation-style/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../grid/data-validator-service/index.html | 4 +- .../src/EmployeesData.ts | 902 +++++++++--------- .../grid/data-validator-service/src/index.css | 2 +- .../grids/grid/disabled-summaries/index.html | 4 +- samples/grids/grid/editing-columns/index.html | 4 +- .../grids/grid/editing-columns/src/index.css | 2 +- samples/grids/grid/editing-events/index.html | 4 +- .../grids/grid/editing-events/src/index.css | 2 +- .../grids/grid/editing-excel-style/index.html | 4 +- .../grid/editing-excel-style/src/index.css | 2 +- .../grids/grid/editing-lifecycle/index.html | 4 +- .../grid/editing-lifecycle/src/index.css | 2 +- samples/grids/grid/excel-exporting/index.html | 4 +- .../grids/grid/excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 6 +- .../excel-style-filtering-style/index.html | 4 +- .../excel-style-filtering-style/src/index.css | 2 +- .../excel-style-filtering-style/src/index.tsx | 4 +- .../external-advanced-filtering/index.html | 4 +- .../external-advanced-filtering/src/index.css | 2 +- .../grids/grid/filtering-options/index.html | 4 +- .../grid/filtering-options/src/index.css | 2 +- .../grids/grid/filtering-strategy/index.html | 4 +- .../grid/filtering-strategy/src/index.css | 2 +- .../grid/filtering-strategy/src/index.tsx | 4 +- samples/grids/grid/filtering-style/index.html | 4 +- .../grids/grid/filtering-style/src/index.css | 2 +- .../grids/grid/filtering-style/src/index.tsx | 4 +- samples/grids/grid/finjs/index.html | 4 +- samples/grids/grid/finjs/src/FinancialData.ts | 2 +- samples/grids/grid/finjs/src/index.css | 2 +- samples/grids/grid/groupby-custom/index.html | 4 +- .../grids/grid/groupby-custom/src/index.css | 2 +- .../grids/grid/groupby-expressions/index.html | 4 +- .../grid/groupby-expressions/src/index.css | 2 +- .../grid/groupby-expressions/src/index.tsx | 4 +- samples/grids/grid/groupby-paging/index.html | 4 +- .../grids/grid/groupby-paging/src/index.css | 2 +- samples/grids/grid/groupby-styling/index.html | 4 +- .../grids/grid/groupby-styling/src/index.css | 2 +- .../grids/grid/groupby-styling/src/index.tsx | 4 +- .../grid/groupby-summary-options/index.html | 4 +- .../groupby-summary-options/src/index.css | 2 +- .../grid/groupby-summary-styling/index.html | 4 +- .../groupby-summary-styling/src/index.css | 2 +- samples/grids/grid/infinite-scroll/index.html | 4 +- .../grids/grid/infinite-scroll/src/index.css | 2 +- .../keyboard-custom-navigation/index.html | 4 +- .../keyboard-custom-navigation/src/index.css | 2 +- .../grid/keyboard-mrl-navigation/index.html | 4 +- .../keyboard-mrl-navigation/src/index.css | 2 +- .../grid/layout-display-density/index.html | 4 +- .../grid/layout-display-density/src/index.css | 2 +- samples/grids/grid/master-detail/index.html | 4 +- .../grids/grid/master-detail/src/index.css | 2 +- .../grid/multi-cell-selection-mode/index.html | 4 +- .../multi-cell-selection-mode/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../grid/multi-row-layout-options/index.html | 4 +- .../multi-row-layout-options/src/index.css | 2 +- .../grid/multi-row-layout-style/index.html | 4 +- .../grid/multi-row-layout-style/src/index.css | 2 +- samples/grids/grid/overview/index.html | 4 +- samples/grids/grid/overview/src/index.css | 2 +- samples/grids/grid/overview/src/index.tsx | 4 +- samples/grids/grid/paste/index.html | 4 +- samples/grids/grid/paste/src/index.css | 2 +- .../grids/grid/remote-paging-data/index.html | 4 +- .../grid/remote-paging-data/src/index.css | 2 +- .../grids/grid/remote-paging-grid/index.html | 4 +- .../grid/remote-paging-grid/src/index.css | 2 +- samples/grids/grid/row-adding/index.html | 4 +- samples/grids/grid/row-adding/src/index.css | 2 +- samples/grids/grid/row-classes/index.html | 4 +- samples/grids/grid/row-classes/src/index.css | 2 +- samples/grids/grid/row-drag-base/index.html | 4 +- .../grids/grid/row-drag-base/src/index.css | 2 +- .../grids/grid/row-editing-options/index.html | 4 +- .../grid/row-editing-options/src/index.css | 2 +- .../grids/grid/row-editing-style/index.html | 4 +- .../grid/row-editing-style/src/index.css | 2 +- .../grids/grid/row-paging-basic/index.html | 4 +- .../grid/row-paging-basic/src/AthletesData.ts | 370 +++---- .../grids/grid/row-paging-basic/src/index.css | 2 +- .../grids/grid/row-paging-options/index.html | 4 +- .../row-paging-options/src/AthletesData.ts | 370 +++---- .../grid/row-paging-options/src/index.css | 2 +- .../grids/grid/row-pinning-drag/index.html | 4 +- .../grids/grid/row-pinning-drag/src/index.css | 2 +- .../grid/row-pinning-extra-column/index.html | 4 +- .../row-pinning-extra-column/src/index.css | 2 +- .../grids/grid/row-pinning-options/index.html | 4 +- .../grid/row-pinning-options/src/index.css | 2 +- .../grids/grid/row-pinning-style/index.html | 4 +- .../grid/row-pinning-style/src/index.css | 2 +- samples/grids/grid/row-reorder/index.html | 4 +- samples/grids/grid/row-reorder/src/index.css | 2 +- .../grids/grid/row-selection-mode/index.html | 4 +- .../grid/row-selection-mode/src/index.css | 2 +- .../row-selection-template-excel/index.html | 4 +- .../src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- samples/grids/grid/row-styles/index.html | 4 +- samples/grids/grid/row-styles/src/index.css | 2 +- .../grid/state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../grid/state-persistence-main/index.html | 4 +- .../grid/state-persistence-main/src/index.css | 2 +- .../grids/grid/styling-custom-CSS/index.html | 4 +- .../grid/styling-custom-CSS/src/index.css | 2 +- .../grids/grid/toolbar-sample-1/index.html | 4 +- .../grid/toolbar-sample-1/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-1/src/index.css | 2 +- .../grids/grid/toolbar-sample-2/index.html | 4 +- .../grid/toolbar-sample-2/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-2/src/index.css | 2 +- .../grids/grid/toolbar-sample-3/index.html | 4 +- .../grid/toolbar-sample-3/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-sample-3/src/index.css | 2 +- samples/grids/grid/toolbar-style/index.html | 4 +- .../grid/toolbar-style/src/AthletesData.ts | 370 +++---- .../grids/grid/toolbar-style/src/index.css | 2 +- .../hierarchical-grid/action-strip/index.html | 4 +- .../action-strip/src/SingersData.json | 28 +- .../action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../advanced-filtering-style/src/index.css | 2 +- .../cell-editing-sample/index.html | 4 +- .../cell-editing-sample/src/index.css | 2 +- .../cell-editing-styling/index.html | 4 +- .../cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../cell-merge/public/index.html | 4 +- .../cell-merge/src/index.css | 2 +- .../cell-selection-mode/index.html | 4 +- .../cell-selection-mode/src/SingersData.json | 28 +- .../cell-selection-mode/src/index.css | 2 +- .../cell-selection-overview/index.html | 4 +- .../src/SingersData.json | 28 +- .../cell-selection-overview/src/index.css | 2 +- .../cell-selection-style/index.html | 4 +- .../cell-selection-style/src/SingersData.json | 28 +- .../cell-selection-style/src/index.css | 2 +- .../column-auto-sizing/index.html | 4 +- .../column-auto-sizing/src/index.css | 2 +- .../column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../column-hiding-toolbar/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-hiding-toolbar/src/index.css | 2 +- .../column-moving-options/index.html | 4 +- .../column-moving-options/src/index.css | 2 +- .../column-moving-styles/index.html | 4 +- .../column-moving-styles/src/index.css | 2 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../column-pinning-options/index.html | 4 +- .../column-pinning-options/src/index.css | 2 +- .../column-pinning-right-side/index.html | 4 +- .../column-pinning-right-side/src/index.css | 2 +- .../column-pinning-styles/index.html | 4 +- .../column-pinning-styles/src/index.css | 2 +- .../column-pinning/index.html | 4 +- .../column-pinning/src/index.css | 2 +- .../column-resize-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-resize-styling/src/index.css | 2 +- .../column-resizing/index.html | 4 +- .../column-resizing/src/SingersData.json | 28 +- .../column-resizing/src/index.css | 2 +- .../column-selection-group/index.html | 4 +- .../column-selection-group/src/index.css | 2 +- .../column-selection-mode/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-selection-mode/src/index.css | 2 +- .../column-selection-styles/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-selection-styles/src/index.css | 2 +- .../column-sorting-indicators/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-sorting-indicators/src/index.css | 2 +- .../column-sorting-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../column-sorting-options/src/index.css | 2 +- .../column-sorting-style/index.html | 4 +- .../column-sorting-style/src/SingersData.json | 28 +- .../column-sorting-style/src/index.css | 2 +- .../conditional-cell-style-1/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-cell-style-1/src/index.css | 2 +- .../conditional-cell-style-2/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-cell-style-2/src/index.css | 2 +- .../conditional-row-selectors/index.html | 4 +- .../src/SingersData.json | 28 +- .../conditional-row-selectors/src/index.css | 2 +- .../custom-filtering/index.html | 4 +- .../custom-filtering/src/SingersData.json | 28 +- .../custom-filtering/src/index.css | 2 +- .../custom-filtering/src/index.tsx | 4 +- .../data-exporting-indicator/index.html | 4 +- .../src/SingersData.ts | 28 +- .../data-exporting-indicator/src/index.css | 2 +- .../index.html | 4 +- .../src/index.css | 2 +- .../data-summary-formatter/index.html | 4 +- .../src/SingersData.json | 28 +- .../data-summary-formatter/src/index.css | 2 +- .../data-summary-options-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../data-summary-options/index.html | 4 +- .../data-summary-options/src/SingersData.json | 28 +- .../data-summary-options/src/index.css | 2 +- .../data-summary-template/index.html | 4 +- .../src/SingersData.json | 28 +- .../data-summary-template/src/index.css | 2 +- .../disabled-summaries/index.html | 4 +- .../disabled-summaries/src/SingersData.json | 28 +- .../editing-columns/index.html | 4 +- .../editing-columns/src/index.css | 2 +- .../editing-events/index.html | 4 +- .../editing-events/src/index.css | 2 +- .../editing-lifecycle/index.html | 4 +- .../editing-lifecycle/src/SingersData.json | 28 +- .../editing-lifecycle/src/index.css | 2 +- .../excel-exporting/index.html | 4 +- .../excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- .../excel-style-filtering-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../excel-style-filtering-style/src/index.css | 2 +- .../filtering-options/index.html | 4 +- .../filtering-options/src/SingersData.json | 28 +- .../filtering-options/src/index.css | 2 +- .../filtering-style/index.html | 4 +- .../filtering-style/src/SingersData.json | 28 +- .../filtering-style/src/index.css | 2 +- .../hierarchical-grid-options/index.html | 4 +- .../src/SingersData.json | 28 +- .../hierarchical-grid-options/src/index.css | 2 +- .../hierarchical-grid-paging-style/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../hierarchical-grid-styling/index.html | 4 +- .../src/SingersData.json | 28 +- .../hierarchical-grid-styling/src/index.css | 2 +- .../layout-display-density/index.html | 4 +- .../layout-display-density/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../hierarchical-grid/overview/index.html | 4 +- .../overview/src/SingersData.json | 28 +- .../hierarchical-grid/overview/src/index.css | 2 +- .../remote-paging-hgrid/index.html | 4 +- .../remote-paging-hgrid/src/index.css | 2 +- .../hierarchical-grid/row-adding/index.html | 4 +- .../row-adding/src/SingersData.json | 28 +- .../row-adding/src/index.css | 2 +- .../hierarchical-grid/row-classes/index.html | 4 +- .../row-classes/src/SingersData.json | 28 +- .../row-classes/src/index.css | 2 +- .../row-drag-base/index.html | 4 +- .../row-drag-base/src/SingersData.ts | 28 +- .../row-drag-base/src/index.css | 2 +- .../row-editing-options/index.html | 4 +- .../row-editing-options/src/SingersData.json | 28 +- .../row-editing-options/src/index.css | 2 +- .../row-editing-style/index.html | 4 +- .../row-editing-style/src/SingersData.json | 28 +- .../row-editing-style/src/index.css | 2 +- .../row-pinning-extra-column/index.html | 4 +- .../src/SingersData.json | 28 +- .../row-pinning-extra-column/src/index.css | 2 +- .../row-pinning-options/index.html | 4 +- .../row-pinning-options/src/SingersData.json | 28 +- .../row-pinning-options/src/index.css | 2 +- .../row-pinning-style/index.html | 4 +- .../row-pinning-style/src/SingersData.json | 28 +- .../row-pinning-style/src/index.css | 2 +- .../hierarchical-grid/row-reorder/index.html | 4 +- .../row-reorder/src/SingersData.json | 28 +- .../row-reorder/src/index.css | 2 +- .../row-selection-mode/index.html | 4 +- .../row-selection-mode/src/SingersData.json | 28 +- .../row-selection-mode/src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/SingersData.json | 28 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- .../hierarchical-grid/row-styles/index.html | 4 +- .../row-styles/src/SingersData.json | 28 +- .../row-styles/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../src/SingersData.json | 28 +- .../state-persistence-main/src/index.css | 2 +- .../toolbar-sample-3/index.html | 4 +- .../toolbar-sample-3/src/SingersData.json | 28 +- .../toolbar-sample-3/src/index.css | 2 +- .../toolbar-sample-4/index.html | 4 +- .../toolbar-sample-4/src/SingersData.ts | 28 +- .../toolbar-sample-4/src/index.css | 2 +- .../toolbar-style/index.html | 4 +- .../toolbar-style/src/SingersData.json | 28 +- .../toolbar-style/src/index.css | 2 +- samples/grids/list/add-list-items/index.html | 2 +- .../grids/list/list-item-content/index.html | 2 +- samples/grids/list/overview/index.html | 2 +- samples/grids/list/overview/src/index.tsx | 6 +- samples/grids/list/styling/index.html | 2 +- samples/grids/list/styling/src/index.tsx | 6 +- .../pivot-grid/aggregate-max-sales/index.html | 4 +- .../aggregate-max-sales/src/index.css | 2 +- .../aggregate-units-sold/index.html | 4 +- .../aggregate-units-sold/src/index.css | 2 +- .../grids/pivot-grid/data-selector/index.html | 4 +- .../pivot-grid/data-selector/src/index.css | 2 +- samples/grids/pivot-grid/features/index.html | 4 +- .../grids/pivot-grid/features/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../state-persistence-main/src/index.css | 2 +- .../grids/tree-grid/action-strip/index.html | 4 +- .../tree-grid/action-strip/src/index.css | 2 +- .../advanced-filtering-options/index.html | 4 +- .../advanced-filtering-options/src/index.css | 2 +- .../advanced-filtering-style/index.html | 4 +- .../advanced-filtering-style/src/index.css | 2 +- .../tree-grid/cell-editing-sample/index.html | 4 +- .../cell-editing-sample/src/index.css | 2 +- .../tree-grid/cell-editing-styling/index.html | 4 +- .../cell-editing-styling/src/index.css | 2 +- .../public/index.html | 4 +- .../cell-merge-custom-sample/src/index.css | 2 +- .../tree-grid/cell-merge/public/index.html | 4 +- .../grids/tree-grid/cell-merge/src/index.css | 2 +- .../tree-grid/cell-selection-mode/index.html | 4 +- .../cell-selection-mode/src/index.css | 2 +- .../tree-grid/cell-selection-style/index.html | 4 +- .../cell-selection-style/src/index.css | 2 +- .../tree-grid/clipboard-operations/index.html | 4 +- .../clipboard-operations/src/index.css | 2 +- .../tree-grid/column-auto-sizing/index.html | 4 +- .../column-auto-sizing/src/index.css | 2 +- .../column-collapsible-groups/index.html | 4 +- .../column-collapsible-groups/src/index.css | 2 +- .../tree-grid/column-data-types/index.html | 4 +- .../column-data-types/src/EmployeesData.ts | 36 +- .../tree-grid/column-data-types/src/index.css | 2 +- .../column-hiding-toolbar-style/index.html | 4 +- .../column-hiding-toolbar-style/src/index.css | 2 +- .../column-hiding-toolbar/index.html | 4 +- .../column-hiding-toolbar/src/index.css | 2 +- .../column-moving-options/index.html | 4 +- .../column-moving-options/src/index.css | 2 +- .../tree-grid/column-moving-styles/index.html | 4 +- .../column-moving-styles/src/index.css | 2 +- .../column-moving-styles/src/index.tsx | 14 +- .../public/index.html | 4 +- .../column-pinning-both-sides/src/index.css | 2 +- .../column-pinning-options/index.html | 4 +- .../column-pinning-options/src/index.css | 2 +- .../column-pinning-right-side/index.html | 4 +- .../column-pinning-right-side/src/index.css | 2 +- .../column-pinning-styles/index.html | 4 +- .../column-pinning-styles/src/index.css | 2 +- .../column-pinning-toolbar/index.html | 4 +- .../column-pinning-toolbar/src/index.css | 2 +- .../grids/tree-grid/column-pinning/index.html | 4 +- .../tree-grid/column-pinning/src/index.css | 2 +- .../column-resize-styling/index.html | 4 +- .../column-resize-styling/src/index.css | 2 +- .../tree-grid/column-resizing/index.html | 4 +- .../tree-grid/column-resizing/src/index.css | 2 +- .../column-selection-group/index.html | 4 +- .../column-selection-group/src/index.css | 2 +- .../column-selection-mode/index.html | 4 +- .../column-selection-mode/src/index.css | 2 +- .../column-selection-style/index.html | 4 +- .../column-selection-style/src/index.css | 2 +- .../column-selection-styles/index.html | 4 +- .../column-selection-styles/src/index.css | 2 +- .../column-sorting-indicators/index.html | 4 +- .../column-sorting-indicators/src/index.css | 2 +- .../column-sorting-options/index.html | 4 +- .../column-sorting-options/src/index.css | 2 +- .../tree-grid/column-sorting-style/index.html | 4 +- .../column-sorting-style/src/index.css | 2 +- .../conditional-cell-style-1/index.html | 4 +- .../conditional-cell-style-1/src/index.css | 2 +- .../conditional-cell-style-2/index.html | 4 +- .../conditional-cell-style-2/src/index.css | 2 +- .../conditional-row-selectors/index.html | 4 +- .../conditional-row-selectors/src/index.css | 2 +- .../data-exporting-indicator/index.html | 4 +- .../data-exporting-indicator/src/index.css | 2 +- .../grids/tree-grid/data-searching/index.html | 4 +- .../tree-grid/data-searching/src/index.css | 2 +- .../data-summary-children/index.html | 4 +- .../data-summary-children/src/index.css | 2 +- .../data-summary-formatter/index.html | 4 +- .../data-summary-formatter/src/index.css | 2 +- .../data-summary-options-styling/index.html | 4 +- .../src/index.css | 2 +- .../tree-grid/data-summary-options/index.html | 4 +- .../data-summary-options/src/index.css | 2 +- .../data-summary-template/index.html | 4 +- .../data-summary-template/src/index.css | 2 +- .../tree-grid/disabled-summaries/index.html | 4 +- .../tree-grid/editing-columns/index.html | 4 +- .../tree-grid/editing-columns/src/index.css | 2 +- .../grids/tree-grid/editing-events/index.html | 4 +- .../tree-grid/editing-events/src/index.css | 2 +- .../tree-grid/editing-lifecycle/index.html | 4 +- .../tree-grid/editing-lifecycle/src/index.css | 2 +- .../tree-grid/excel-exporting/index.html | 4 +- .../tree-grid/excel-exporting/src/index.css | 2 +- .../excel-style-filtering-sample-1/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-2/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 4 +- .../excel-style-filtering-sample-3/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 6 +- .../excel-style-filtering-style/index.html | 4 +- .../excel-style-filtering-style/src/index.css | 2 +- .../excel-style-filtering-style/src/index.tsx | 4 +- .../tree-grid/filtering-options/index.html | 4 +- .../tree-grid/filtering-options/src/index.css | 2 +- .../tree-grid/filtering-style/index.html | 4 +- .../tree-grid/filtering-style/src/index.css | 2 +- .../keyboard-custom-navigation/index.html | 4 +- .../keyboard-custom-navigation/src/index.css | 2 +- .../layout-display-density/index.html | 4 +- .../layout-display-density/src/index.css | 2 +- .../multi-cell-selection-mode/index.html | 4 +- .../multi-cell-selection-mode/src/index.css | 2 +- .../multi-column-headers-export/index.html | 4 +- .../multi-column-headers-export/src/index.css | 2 +- .../multi-column-headers-overview/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-styling/index.html | 4 +- .../src/index.css | 2 +- .../multi-column-headers-template/index.html | 4 +- .../src/index.css | 2 +- .../tree-grid/overview-styling/index.html | 4 +- .../tree-grid/overview-styling/src/index.css | 2 +- samples/grids/tree-grid/overview/index.html | 4 +- .../grids/tree-grid/overview/src/index.css | 2 +- samples/grids/tree-grid/row-adding/index.html | 4 +- .../grids/tree-grid/row-adding/src/index.css | 2 +- .../grids/tree-grid/row-classes/index.html | 4 +- .../grids/tree-grid/row-classes/src/index.css | 2 +- .../grids/tree-grid/row-drag-base/index.html | 4 +- .../tree-grid/row-drag-base/src/index.css | 2 +- .../tree-grid/row-editing-options/index.html | 4 +- .../row-editing-options/src/index.css | 2 +- .../tree-grid/row-editing-style/index.html | 4 +- .../tree-grid/row-editing-style/src/index.css | 2 +- .../tree-grid/row-paging-basic/index.html | 4 +- .../tree-grid/row-paging-basic/src/index.css | 2 +- .../tree-grid/row-paging-options/index.html | 4 +- .../row-paging-options/src/index.css | 2 +- .../tree-grid/row-paging-style/index.html | 4 +- .../tree-grid/row-paging-style/src/index.css | 2 +- .../row-pinning-extra-column/index.html | 4 +- .../row-pinning-extra-column/src/index.css | 2 +- .../tree-grid/row-pinning-options/index.html | 4 +- .../row-pinning-options/src/index.css | 2 +- .../tree-grid/row-pinning-style/index.html | 4 +- .../tree-grid/row-pinning-style/src/index.css | 2 +- .../grids/tree-grid/row-reorder/index.html | 4 +- .../grids/tree-grid/row-reorder/src/index.css | 2 +- .../tree-grid/row-selection-mode/index.html | 4 +- .../row-selection-mode/src/index.css | 2 +- .../row-selection-template-excel/index.html | 4 +- .../src/index.css | 2 +- .../row-selection-template-numbers/index.html | 4 +- .../src/index.css | 2 +- .../src/index.tsx | 2 +- samples/grids/tree-grid/row-styles/index.html | 4 +- .../grids/tree-grid/row-styles/src/index.css | 2 +- .../state-persistence-about/index.html | 4 +- .../state-persistence-about/src/index.css | 2 +- .../state-persistence-main/index.html | 4 +- .../state-persistence-main/src/index.css | 2 +- .../tree-grid/toolbar-sample-1/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-sample-1/src/index.css | 2 +- .../tree-grid/toolbar-sample-2/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 202 +--- .../tree-grid/toolbar-sample-2/src/index.css | 2 +- .../tree-grid/toolbar-sample-3/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-sample-3/src/index.css | 2 +- .../tree-grid/toolbar-sample-4/index.html | 4 +- .../src/EmployeesFlatAvatars.ts | 202 +--- .../tree-grid/toolbar-sample-4/src/index.css | 2 +- .../grids/tree-grid/toolbar-style/index.html | 4 +- .../toolbar-style/src/EmployeesFlatAvatars.ts | 36 +- .../tree-grid/toolbar-style/src/index.css | 2 +- .../using-primary-foreign-keys/index.html | 4 +- .../using-primary-foreign-keys/src/index.css | 2 +- samples/grids/tree/basic-example/index.html | 2 +- samples/inputs/badge/outlined/index.html | 2 +- samples/inputs/badge/outlined/src/index.css | 2 +- samples/inputs/badge/shape/index.html | 2 +- samples/inputs/badge/shape/src/index.css | 2 +- samples/inputs/badge/variants/index.html | 2 +- samples/inputs/badge/variants/src/index.css | 2 +- .../inputs/button-group/alignment/index.html | 2 +- .../button-group/alignment/src/index.css | 2 +- .../inputs/button-group/overview/index.html | 2 +- .../button-group/overview/src/index.css | 2 +- .../inputs/button-group/selection/index.html | 2 +- .../button-group/selection/src/index.css | 2 +- samples/inputs/button-group/size/index.html | 2 +- .../inputs/button-group/size/src/index.css | 2 +- .../inputs/button-group/styling/index.html | 2 +- .../inputs/button-group/styling/src/index.css | 2 +- samples/inputs/button/contained/index.html | 2 +- samples/inputs/button/contained/src/index.css | 2 +- samples/inputs/button/download/index.html | 2 +- samples/inputs/button/download/src/index.css | 2 +- samples/inputs/button/fab/index.html | 2 +- samples/inputs/button/fab/src/index.css | 2 +- samples/inputs/button/flat/index.html | 2 +- samples/inputs/button/flat/src/index.css | 2 +- samples/inputs/button/outlined/index.html | 2 +- samples/inputs/button/outlined/src/index.css | 2 +- samples/inputs/button/overview/index.html | 2 +- samples/inputs/button/overview/src/index.css | 2 +- samples/inputs/button/size/index.html | 2 +- samples/inputs/button/size/src/index.css | 2 +- samples/inputs/button/styling/index.html | 2 +- samples/inputs/button/styling/src/index.css | 2 +- samples/inputs/checkbox/checking/index.html | 2 +- .../inputs/checkbox/checking/src/index.css | 2 +- samples/inputs/checkbox/disabled/index.html | 2 +- .../inputs/checkbox/disabled/src/index.css | 2 +- .../inputs/checkbox/indeterminate/index.html | 2 +- .../checkbox/indeterminate/src/index.css | 2 +- samples/inputs/checkbox/label/index.html | 2 +- samples/inputs/checkbox/label/src/index.css | 2 +- samples/inputs/checkbox/overview/index.html | 2 +- .../inputs/checkbox/overview/src/index.css | 2 +- samples/inputs/chip/multiple/index.html | 2 +- samples/inputs/chip/multiple/src/index.css | 2 +- samples/inputs/chip/overview/index.html | 2 +- samples/inputs/chip/overview/src/index.css | 2 +- samples/inputs/chip/size/index.html | 2 +- samples/inputs/chip/size/src/index.css | 2 +- samples/inputs/chip/styling/index.html | 2 +- samples/inputs/chip/styling/src/index.css | 2 +- samples/inputs/chip/variants/index.html | 2 +- samples/inputs/chip/variants/src/index.css | 2 +- .../dynamic/index.html | 2 +- .../dynamic/src/index.css | 2 +- .../indeterminate/index.html | 2 +- .../indeterminate/src/index.css | 2 +- .../simple/index.html | 2 +- .../simple/src/index.css | 2 +- .../styling/index.html | 2 +- .../styling/src/index.css | 2 +- .../inputs/color-editor/overview/index.html | 4 +- .../color-editor/overview/src/index.css | 2 +- samples/inputs/combo/features/index.html | 2 +- samples/inputs/combo/features/src/index.css | 2 +- samples/inputs/combo/overview/index.html | 2 +- samples/inputs/combo/overview/src/index.css | 2 +- samples/inputs/combo/selection/index.html | 2 +- samples/inputs/combo/selection/src/index.css | 2 +- samples/inputs/combo/simplified/index.html | 2 +- samples/inputs/combo/simplified/src/index.css | 2 +- samples/inputs/combo/styling/index.html | 2 +- samples/inputs/combo/styling/src/index.css | 2 +- samples/inputs/combo/templates/index.html | 2 +- samples/inputs/combo/templates/src/index.css | 2 +- .../input-format-display-format/index.html | 2 +- .../date-time-input/min-max-value/index.html | 2 +- .../date-time-input/overview/index.html | 2 +- .../date-time-input/step-up-down/index.html | 2 +- samples/inputs/dropdown/group/index.html | 2 +- samples/inputs/dropdown/group/src/index.css | 2 +- samples/inputs/dropdown/header/index.html | 2 +- samples/inputs/dropdown/header/src/index.css | 2 +- samples/inputs/dropdown/item/index.html | 2 +- samples/inputs/dropdown/item/src/index.css | 2 +- samples/inputs/dropdown/overview/index.html | 2 +- .../inputs/dropdown/overview/src/index.css | 2 +- samples/inputs/dropdown/position/index.html | 2 +- .../inputs/dropdown/position/src/index.css | 2 +- samples/inputs/dropdown/styling/index.html | 2 +- samples/inputs/dropdown/styling/src/index.css | 2 +- samples/inputs/dropdown/target/index.html | 2 +- samples/inputs/dropdown/target/src/index.css | 2 +- samples/inputs/icon-button/size/index.html | 2 +- samples/inputs/icon-button/size/src/index.css | 2 +- samples/inputs/icon-button/styling/index.html | 2 +- .../inputs/icon-button/styling/src/index.css | 2 +- samples/inputs/icon-button/variant/index.html | 2 +- .../inputs/icon-button/variant/src/index.css | 2 +- samples/inputs/input/helper-text/index.html | 2 +- .../inputs/input/helper-text/src/index.css | 2 +- samples/inputs/input/overview/index.html | 2 +- samples/inputs/input/overview/src/index.css | 2 +- samples/inputs/input/prefix-suffix/index.html | 2 +- .../inputs/input/prefix-suffix/src/index.css | 2 +- samples/inputs/input/size/index.html | 2 +- samples/inputs/input/size/src/index.css | 2 +- samples/inputs/input/styling/index.html | 2 +- samples/inputs/input/styling/src/index.css | 2 +- .../dynamic/index.html | 2 +- .../dynamic/src/index.css | 2 +- .../simple/index.html | 2 +- .../simple/src/index.css | 2 +- .../striped/index.html | 2 +- .../striped/src/index.css | 2 +- .../styling/index.html | 2 +- .../styling/src/index.css | 2 +- .../types/index.html | 2 +- .../types/src/index.css | 2 +- .../mask-input/applying-mask/index.html | 2 +- .../mask-input/applying-mask/src/index.css | 2 +- samples/inputs/mask-input/overview/index.html | 2 +- .../inputs/mask-input/overview/src/index.css | 2 +- .../inputs/mask-input/value-modes/index.html | 2 +- .../mask-input/value-modes/src/index.css | 2 +- samples/inputs/radio/alignment/index.html | 2 +- samples/inputs/radio/alignment/src/index.css | 2 +- samples/inputs/radio/disabled/index.html | 2 +- samples/inputs/radio/disabled/src/index.css | 2 +- samples/inputs/radio/group/index.html | 2 +- samples/inputs/radio/group/src/index.css | 2 +- samples/inputs/radio/invalid/index.html | 2 +- samples/inputs/radio/invalid/src/index.css | 2 +- samples/inputs/radio/label/index.html | 2 +- samples/inputs/radio/label/src/index.css | 2 +- samples/inputs/radio/styling/index.html | 2 +- samples/inputs/radio/styling/src/index.css | 2 +- samples/inputs/rating/basic/index.html | 2 +- samples/inputs/rating/basic/src/index.css | 2 +- samples/inputs/rating/custom/index.html | 2 +- samples/inputs/rating/custom/src/index.css | 2 +- samples/inputs/rating/empty/index.html | 2 +- samples/inputs/rating/empty/src/index.css | 2 +- .../inputs/rating/single-selection/index.html | 2 +- .../rating/single-selection/src/index.css | 2 +- samples/inputs/rating/styling/index.html | 2 +- samples/inputs/rating/styling/src/index.css | 2 +- samples/inputs/ripple/button/index.html | 2 +- samples/inputs/ripple/button/src/index.css | 2 +- samples/inputs/ripple/color/index.html | 2 +- samples/inputs/ripple/color/src/index.css | 2 +- samples/inputs/select/group/index.html | 2 +- samples/inputs/select/group/src/index.css | 2 +- samples/inputs/select/header/index.html | 2 +- samples/inputs/select/header/src/index.css | 2 +- samples/inputs/select/item/index.html | 2 +- samples/inputs/select/item/src/index.css | 2 +- samples/inputs/select/overview/index.html | 2 +- samples/inputs/select/overview/src/index.css | 2 +- samples/inputs/select/styling/index.html | 2 +- samples/inputs/select/styling/src/index.css | 2 +- samples/inputs/slider/constraints/index.html | 2 +- .../inputs/slider/constraints/src/index.css | 2 +- samples/inputs/slider/disabled/index.html | 2 +- samples/inputs/slider/disabled/src/index.css | 2 +- samples/inputs/slider/discrete/index.html | 2 +- samples/inputs/slider/discrete/src/index.css | 2 +- samples/inputs/slider/labels/index.html | 2 +- samples/inputs/slider/labels/src/index.css | 2 +- samples/inputs/slider/overview/index.html | 2 +- samples/inputs/slider/overview/src/index.css | 2 +- samples/inputs/slider/styling/index.html | 2 +- samples/inputs/slider/styling/src/index.css | 2 +- samples/inputs/slider/tick-labels/index.html | 2 +- .../inputs/slider/tick-labels/src/index.css | 2 +- samples/inputs/slider/ticks/index.html | 2 +- samples/inputs/slider/ticks/src/index.css | 2 +- samples/inputs/slider/value-format/index.html | 2 +- .../inputs/slider/value-format/src/index.css | 2 +- samples/inputs/slider/value/index.html | 2 +- samples/inputs/slider/value/src/index.css | 2 +- samples/inputs/switches/checking/index.html | 2 +- .../inputs/switches/checking/src/index.css | 2 +- samples/inputs/switches/disabled/index.html | 2 +- .../inputs/switches/disabled/src/index.css | 2 +- samples/inputs/switches/label/index.html | 2 +- samples/inputs/switches/label/src/index.css | 2 +- samples/inputs/switches/overview/index.html | 2 +- .../inputs/switches/overview/src/index.css | 2 +- .../textarea/form-integration/index.html | 2 +- .../textarea/form-integration/src/index.css | 2 +- samples/inputs/textarea/overview/index.html | 2 +- .../inputs/textarea/overview/src/index.css | 2 +- samples/inputs/textarea/resize/index.html | 2 +- samples/inputs/textarea/resize/src/index.css | 2 +- samples/inputs/textarea/slots/index.html | 2 +- samples/inputs/textarea/slots/src/index.css | 2 +- samples/inputs/textarea/styling/index.html | 2 +- samples/inputs/textarea/styling/src/index.css | 2 +- samples/inputs/tooltip/advanced/index.html | 2 +- samples/inputs/tooltip/advanced/src/index.css | 2 +- samples/inputs/tooltip/advanced/src/index.tsx | 6 +- samples/inputs/tooltip/overview/index.html | 2 +- samples/inputs/tooltip/overview/src/index.css | 2 +- samples/inputs/tooltip/overview/src/index.tsx | 2 +- samples/inputs/tooltip/placement/index.html | 2 +- .../inputs/tooltip/placement/src/index.css | 2 +- samples/inputs/tooltip/rich/index.html | 2 +- samples/inputs/tooltip/rich/src/index.css | 4 +- samples/inputs/tooltip/rich/src/index.tsx | 2 +- samples/inputs/tooltip/styling/index.html | 2 +- samples/inputs/tooltip/styling/src/index.css | 2 +- samples/inputs/tooltip/styling/src/index.tsx | 2 +- samples/inputs/tooltip/triggers/index.html | 2 +- samples/inputs/tooltip/triggers/src/index.css | 2 +- samples/interactions/chat/features/index.html | 2 +- samples/interactions/chat/overview/index.html | 2 +- .../interactions/chat/overview/src/index.tsx | 2 +- samples/interactions/chat/styling/index.html | 2 +- .../interactions/chat/styling/src/index.tsx | 2 +- .../accordion/customization/index.html | 2 +- .../accordion/nested-scenario/index.html | 2 +- samples/layouts/accordion/overview/index.html | 2 +- samples/layouts/avatar/icon/index.html | 2 +- samples/layouts/avatar/image/index.html | 2 +- samples/layouts/avatar/image/src/index.tsx | 2 +- samples/layouts/avatar/initials/index.html | 2 +- samples/layouts/avatar/shape/index.html | 2 +- samples/layouts/avatar/size/index.html | 2 +- samples/layouts/avatar/styling/index.html | 2 +- samples/layouts/avatar/styling/src/index.tsx | 2 +- samples/layouts/card/horizontal/index.html | 2 +- samples/layouts/card/horizontal/src/index.tsx | 2 +- samples/layouts/card/overview/index.html | 2 +- .../layouts/card/semi-horizontal/index.html | 2 +- .../card/semi-horizontal/src/index.tsx | 4 +- samples/layouts/card/styling/index.html | 2 +- .../layouts/carousel/animations/index.html | 2 +- .../layouts/carousel/animations/src/index.css | 2 +- .../layouts/carousel/animations/src/index.tsx | 6 +- .../layouts/carousel/components/index.html | 2 +- .../layouts/carousel/components/src/index.css | 2 +- .../layouts/carousel/components/src/index.tsx | 4 +- samples/layouts/carousel/overview/index.html | 2 +- .../layouts/carousel/overview/src/index.css | 2 +- .../layouts/carousel/overview/src/index.tsx | 6 +- samples/layouts/carousel/thumbnail/index.html | 2 +- .../layouts/carousel/thumbnail/src/index.css | 2 +- .../layouts/carousel/thumbnail/src/index.tsx | 10 +- samples/layouts/divider/dashed/index.html | 2 +- samples/layouts/divider/middle/index.html | 2 +- samples/layouts/divider/overview/index.html | 2 +- samples/layouts/divider/select/index.html | 2 +- samples/layouts/divider/vertical/index.html | 2 +- .../dock-manager/customize-buttons/index.html | 2 +- .../dock-manager/embedding-frames/index.html | 2 +- .../layouts/dock-manager/overview/index.html | 2 +- .../layouts/dock-manager/styling/index.html | 2 +- .../dock-manager/styling/src/index.tsx | 48 +- .../dock-manager/updating-panes/index.html | 2 +- .../src/DockManagerSharedData.ts | 64 +- .../component-customization/index.html | 2 +- .../properties-and-events/index.html | 2 +- .../expansion-panel/styling/index.html | 2 +- .../layouts/expansion-panel/usage/index.html | 2 +- samples/layouts/icon/sizing/index.html | 2 +- samples/layouts/icon/styling/index.html | 2 +- samples/layouts/stepper/animations/index.html | 2 +- .../layouts/stepper/animations/src/index.css | 2 +- samples/layouts/stepper/linear/index.html | 2 +- samples/layouts/stepper/linear/src/index.css | 2 +- .../layouts/stepper/orientation/index.html | 2 +- .../layouts/stepper/orientation/src/index.css | 2 +- samples/layouts/stepper/steptypes/index.html | 2 +- .../layouts/stepper/steptypes/src/index.css | 2 +- samples/layouts/stepper/styling/index.html | 2 +- samples/layouts/stepper/styling/src/index.css | 2 +- samples/layouts/tabs/alignment/index.html | 2 +- samples/layouts/tabs/alignment/src/index.css | 2 +- samples/layouts/tabs/overview/index.html | 2 +- samples/layouts/tabs/overview/src/index.css | 2 +- samples/layouts/tabs/prefix-suffix/index.html | 2 +- .../layouts/tabs/prefix-suffix/src/index.css | 2 +- samples/layouts/tabs/scrolling/index.html | 2 +- samples/layouts/tabs/scrolling/src/index.css | 2 +- .../layouts/tile-manager/actions/index.html | 2 +- .../tile-manager/actions/src/index.css | 2 +- .../layouts/tile-manager/columngap/index.html | 2 +- .../tile-manager/columngap/src/index.css | 2 +- .../layouts/tile-manager/dragndrop/index.html | 2 +- .../tile-manager/dragndrop/src/index.css | 2 +- .../layouts/tile-manager/layout/index.html | 2 +- .../layouts/tile-manager/layout/src/index.css | 2 +- .../layouts/tile-manager/overview/index.html | 2 +- .../tile-manager/overview/src/index.css | 2 +- .../layouts/tile-manager/resize/index.html | 2 +- .../layouts/tile-manager/resize/src/index.css | 2 +- .../layouts/tile-manager/styling/index.html | 2 +- .../tile-manager/styling/src/index.css | 2 +- .../maps/geo-map/binding-data-csv/index.html | 2 +- .../binding-data-json-points/index.html | 2 +- .../binding-data-json-shapes/index.html | 2 +- .../geo-map/binding-data-model/index.html | 2 +- .../binding-multiple-shapes/index.html | 2 +- .../binding-multiple-sources/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../geo-map/binding-shp-points/index.html | 2 +- .../geo-map/binding-shp-polygons/index.html | 2 +- .../geo-map/binding-shp-polylines/index.html | 2 +- .../maps/geo-map/custom-tooltips/index.html | 2 +- .../geo-map/custom-tooltips/src/index.tsx | 2 +- .../geo-map/display-all-imagery/index.html | 2 +- .../geo-map/display-all-imagery/src/index.tsx | 30 +- .../geo-map/display-azure-imagery/index.html | 2 +- .../display-azure-imagery/public/index.html | 2 +- .../display-azure-imagery/src/index.tsx | 28 +- .../geo-map/display-bing-imagery/index.html | 2 +- .../geo-map/display-custom-imagery/index.html | 2 +- .../geo-map/display-esri-imagery/index.html | 2 +- .../geo-map/display-heat-imagery/index.html | 2 +- .../geo-map/display-osm-imagery/index.html | 2 +- .../maps/geo-map/marker-layouts/index.html | 2 +- .../marker-layouts/src/WorldLocations.ts | 14 +- .../maps/geo-map/marker-template/index.html | 2 +- .../marker-template/src/WorldLocations.ts | 14 +- samples/maps/geo-map/marker-type/index.html | 2 +- .../geo-map/marker-type/src/WorldLocations.ts | 14 +- samples/maps/geo-map/nav-grid/index.html | 2 +- .../navigation-only-panning/index.html | 2 +- samples/maps/geo-map/navigation/index.html | 2 +- samples/maps/geo-map/overview/index.html | 2 +- .../maps/geo-map/shape-selection/index.html | 2 +- samples/maps/geo-map/shape-styling/index.html | 2 +- .../maps/geo-map/synchronization/index.html | 2 +- .../geo-map/triangulating-data/index.html | 2 +- .../type-scatter-area-series/index.html | 2 +- .../type-scatter-bubble-series/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../type-scatter-contour-series/index.html | 2 +- .../type-scatter-density-series/index.html | 2 +- .../type-scatter-symbol-series/index.html | 2 +- .../src/WorldLocations.ts | 14 +- .../type-shape-polygon-series/index.html | 2 +- .../type-shape-polyline-series/index.html | 2 +- samples/menus/nav-bar/overview/index.html | 2 +- samples/menus/nav-bar/styling/index.html | 2 +- .../nav-drawer/add-drawer-items/index.html | 2 +- samples/menus/nav-drawer/add-mini/index.html | 2 +- .../add-positions-navbar/index.html | 2 +- samples/menus/nav-drawer/styling/index.html | 2 +- .../banner/banner-advanced-sample/index.html | 2 +- .../banner-advanced-sample/src/index.css | 2 +- .../banner-advanced-sample/src/index.tsx | 4 +- .../banner/banner-sample-1/index.html | 2 +- .../banner/banner-sample-1/src/index.css | 2 +- .../banner/banner-sample-1/src/index.tsx | 4 +- .../banner/banner-sample-2/index.html | 2 +- .../banner/banner-sample-2/src/index.css | 2 +- .../banner/banner-sample-2/src/index.tsx | 4 +- .../banner/banner-styling/index.html | 2 +- .../banner/banner-styling/src/index.css | 2 +- .../banner/banner-styling/src/index.tsx | 4 +- .../dialog/closing-variations/index.html | 2 +- .../dialog/closing-variations/src/index.css | 2 +- samples/notifications/dialog/form/index.html | 2 +- .../notifications/dialog/form/src/index.css | 2 +- .../notifications/dialog/overview/index.html | 2 +- .../dialog/overview/src/index.css | 2 +- .../notifications/dialog/styling/index.html | 2 +- .../dialog/styling/src/index.css | 2 +- .../snackbar/action-text/index.html | 2 +- .../snackbar/display-time/index.html | 2 +- .../snackbar/overview/index.html | 2 +- .../notifications/snackbar/styling/index.html | 2 +- .../notifications/toast/overview/index.html | 2 +- .../notifications/toast/properties/index.html | 2 +- .../notifications/toast/styling/index.html | 2 +- .../calendar/disabled-dates/index.html | 2 +- .../scheduling/calendar/formatting/index.html | 2 +- samples/scheduling/calendar/header/index.html | 2 +- .../calendar/multiple-months/index.html | 2 +- .../calendar/multiple-selection/index.html | 2 +- .../scheduling/calendar/overview/index.html | 2 +- .../calendar/range-selection/index.html | 2 +- samples/scheduling/calendar/size/index.html | 2 +- .../calendar/special-dates/index.html | 2 +- .../scheduling/calendar/styling/index.html | 2 +- .../calendar/week-numbers/index.html | 2 +- .../date-picker/dialog-mode/index.html | 2 +- .../scheduling/date-picker/form/index.html | 2 +- .../scheduling/date-picker/format/index.html | 2 +- .../date-picker/overview/index.html | 2 +- .../scheduling/date-picker/styling/index.html | 2 +- .../custom-ranges/index.html | 2 +- .../date-range-picker/form/index.html | 2 +- .../date-range-picker/overview/index.html | 2 +- .../date-range-picker/slots/index.html | 2 +- .../date-range-picker/styling/index.html | 2 +- 1696 files changed, 5854 insertions(+), 6244 deletions(-) diff --git a/browser/index.html b/browser/index.html index 5bd6ba3b09..64cfaa42f3 100644 --- a/browser/index.html +++ b/browser/index.html @@ -24,8 +24,8 @@ user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> Samples Browser | IgniteUI for React | Infragistics - - + + diff --git a/browser/templates/sample/ReadMe-dev.md b/browser/templates/sample/ReadMe-dev.md index 898d00958b..778bc8aa4c 100644 --- a/browser/templates/sample/ReadMe-dev.md +++ b/browser/templates/sample/ReadMe-dev.md @@ -15,7 +15,7 @@ You can preview example of this {PlatformName} application on CodeSandbox by cli - Edit on CodeSandbox + Edit on CodeSandbox @@ -75,11 +75,11 @@ href="https://codesandbox.io/s/github/IgniteUI/igniteui-react-examples/tree/mast --> diff --git a/browser/templates/sample/index.html b/browser/templates/sample/index.html index 1a31b7d4fa..401f62bcab 100644 --- a/browser/templates/sample/index.html +++ b/browser/templates/sample/index.html @@ -4,10 +4,10 @@ SampleName | Infragistics - + + + +This folder contains implementation of React application with example of Styling feature using [Tabs](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/layouts/tabs/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/layouts/tabs/styling/index.html b/samples/layouts/tabs/styling/index.html new file mode 100644 index 0000000000..c7551077f1 --- /dev/null +++ b/samples/layouts/tabs/styling/index.html @@ -0,0 +1,11 @@ + + + + RadioGroup + + + +
+ + + \ No newline at end of file diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json new file mode 100644 index 0000000000..9d2b9274ff --- /dev/null +++ b/samples/layouts/tabs/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-radio-group", + "description": "This project provides example of Radio Group using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/layouts/tabs/styling/sandbox.config.json b/samples/layouts/tabs/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/layouts/tabs/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/layouts/tabs/styling/src/index.css b/samples/layouts/tabs/styling/src/index.css new file mode 100644 index 0000000000..d6590468e3 --- /dev/null +++ b/samples/layouts/tabs/styling/src/index.css @@ -0,0 +1,37 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-tab::part(tab-header), +igc-tabs::part(inner)::after { + --item-background: var(--ig-surface-600); + --border-color: var(--ig-success-300); +} + +igc-tab::part(tab-body), +igc-tab[selected] igc-icon { + --item-active-icon-color: var(--ig-success-300); +} + +igc-tab:not([selected]) igc-icon { + --item-icon-color: var(--ig-gray-500); +} + +igc-tabs::part(start-scroll-button), +igc-tabs::part(end-scroll-button) { + --background: var(--ig-surface-600); + --hover-background: var(--ig-surface-700); + --active-background: var(--ig-surface-700); + --disabled-background: var(--ig-gray-100); + --button-color: var(--ig-gray-700); + --button-hover-color: var(--ig-gray-800); + --button-disabled-color: var(--ig-gray-300); + --border-color: var(--ig-surface-600); +} + +igc-tab::part(tab-header) { + --item-hover-color: var(--ig-success-500); +} + +igc-tab::part(tab-header)::before { + --border-color--hover: var(--ig-gray-500); +} \ No newline at end of file diff --git a/samples/layouts/tabs/styling/src/index.tsx b/samples/layouts/tabs/styling/src/index.tsx new file mode 100644 index 0000000000..d184547eab --- /dev/null +++ b/samples/layouts/tabs/styling/src/index.tsx @@ -0,0 +1,45 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; +import { IgrTabs, IgrTab, IgrIcon, registerIconFromText } from "igniteui-react"; +import "igniteui-webcomponents/themes/light/bootstrap.css"; + +const home = ''; +const search = ''; +const favorite = ''; +registerIconFromText("home", home, "material"); +registerIconFromText("search", search, "material"); +registerIconFromText("favorite", favorite, "material"); + +export default class TabsStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + + + Home tab panel + + + + Search tab panel + + + + Favorite tab panel + + +
+ ); + } + +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById("root")); +root.render(); diff --git a/samples/layouts/tabs/styling/tsconfig.json b/samples/layouts/tabs/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/layouts/tabs/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/layouts/tabs/styling/vite.config.js b/samples/layouts/tabs/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/layouts/tabs/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From c1b0412af4e4c96e07702806201503a459ae0387 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:25:18 +0200 Subject: [PATCH 24/30] feat(badge): add a styling sample (#1019) --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/badge/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/badge/styling/README.md | 56 ++++++++++++++ samples/inputs/badge/styling/index.html | 11 +++ samples/inputs/badge/styling/package.json | 42 +++++++++++ .../inputs/badge/styling/sandbox.config.json | 5 ++ samples/inputs/badge/styling/src/index.css | 7 ++ samples/inputs/badge/styling/src/index.tsx | 24 ++++++ samples/inputs/badge/styling/tsconfig.json | 44 +++++++++++ samples/inputs/badge/styling/vite.config.js | 12 +++ 10 files changed, 280 insertions(+) create mode 100644 samples/inputs/badge/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/badge/styling/.eslintrc.js create mode 100644 samples/inputs/badge/styling/README.md create mode 100644 samples/inputs/badge/styling/index.html create mode 100644 samples/inputs/badge/styling/package.json create mode 100644 samples/inputs/badge/styling/sandbox.config.json create mode 100644 samples/inputs/badge/styling/src/index.css create mode 100644 samples/inputs/badge/styling/src/index.tsx create mode 100644 samples/inputs/badge/styling/tsconfig.json create mode 100644 samples/inputs/badge/styling/vite.config.js diff --git a/samples/inputs/badge/styling/.devcontainer/devcontainer.json b/samples/inputs/badge/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/badge/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/.eslintrc.js b/samples/inputs/badge/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/badge/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/badge/styling/README.md b/samples/inputs/badge/styling/README.md new file mode 100644 index 0000000000..a424e4b8a2 --- /dev/null +++ b/samples/inputs/badge/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Badge](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/badge/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/badge/styling/index.html b/samples/inputs/badge/styling/index.html new file mode 100644 index 0000000000..be7d653435 --- /dev/null +++ b/samples/inputs/badge/styling/index.html @@ -0,0 +1,11 @@ + + + + BadgeShape + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json new file mode 100644 index 0000000000..37d7b3227f --- /dev/null +++ b/samples/inputs/badge/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-badge-shape", + "description": "This project provides example of Badge Shape using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/badge/styling/sandbox.config.json b/samples/inputs/badge/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/badge/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/src/index.css b/samples/inputs/badge/styling/src/index.css new file mode 100644 index 0000000000..516c162995 --- /dev/null +++ b/samples/inputs/badge/styling/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-badge::part(base) { + --background-color: var(--ig-error-A100); + --border-radius: 2px; +} \ No newline at end of file diff --git a/samples/inputs/badge/styling/src/index.tsx b/samples/inputs/badge/styling/src/index.tsx new file mode 100644 index 0000000000..a1ef9955ab --- /dev/null +++ b/samples/inputs/badge/styling/src/index.tsx @@ -0,0 +1,24 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrBadge } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class BadgeStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/badge/styling/tsconfig.json b/samples/inputs/badge/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/badge/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/badge/styling/vite.config.js b/samples/inputs/badge/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/badge/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 6439e5cf9d94884bb8470e69438a4596dfd92770 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:32:49 +0200 Subject: [PATCH 25/30] feat(tree): Add a styling sample (#1014) --- .../styling/.devcontainer/devcontainer.json | 4 + samples/grids/tree/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/grids/tree/styling/README.md | 56 ++++++++++++++ samples/grids/tree/styling/index.html | 11 +++ samples/grids/tree/styling/package.json | 41 ++++++++++ .../grids/tree/styling/sandbox.config.json | 5 ++ samples/grids/tree/styling/src/index.css | 4 + samples/grids/tree/styling/src/index.tsx | 39 ++++++++++ samples/grids/tree/styling/tsconfig.json | 44 +++++++++++ samples/grids/tree/styling/vite.config.js | 12 +++ 10 files changed, 291 insertions(+) create mode 100644 samples/grids/tree/styling/.devcontainer/devcontainer.json create mode 100644 samples/grids/tree/styling/.eslintrc.js create mode 100644 samples/grids/tree/styling/README.md create mode 100644 samples/grids/tree/styling/index.html create mode 100644 samples/grids/tree/styling/package.json create mode 100644 samples/grids/tree/styling/sandbox.config.json create mode 100644 samples/grids/tree/styling/src/index.css create mode 100644 samples/grids/tree/styling/src/index.tsx create mode 100644 samples/grids/tree/styling/tsconfig.json create mode 100644 samples/grids/tree/styling/vite.config.js diff --git a/samples/grids/tree/styling/.devcontainer/devcontainer.json b/samples/grids/tree/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/grids/tree/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/grids/tree/styling/.eslintrc.js b/samples/grids/tree/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/grids/tree/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/tree/styling/README.md b/samples/grids/tree/styling/README.md new file mode 100644 index 0000000000..5d310d1764 --- /dev/null +++ b/samples/grids/tree/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Tree](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/tree/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/tree/styling/index.html b/samples/grids/tree/styling/index.html new file mode 100644 index 0000000000..786f9e89bb --- /dev/null +++ b/samples/grids/tree/styling/index.html @@ -0,0 +1,11 @@ + + + + TreeBasicExample + + + +
+ + + \ No newline at end of file diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json new file mode 100644 index 0000000000..2ef000db44 --- /dev/null +++ b/samples/grids/tree/styling/package.json @@ -0,0 +1,41 @@ +{ + "name": "react-tree-basic-example", + "description": "This project provides example of Card Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/tree/styling/sandbox.config.json b/samples/grids/tree/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/grids/tree/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree/styling/src/index.css b/samples/grids/tree/styling/src/index.css new file mode 100644 index 0000000000..4df814eba6 --- /dev/null +++ b/samples/grids/tree/styling/src/index.css @@ -0,0 +1,4 @@ +igc-tree-item { + --background-active: var(--ig-secondary-500); + --foreground-active: var(--ig-secondary-500-contrast); +} \ No newline at end of file diff --git a/samples/grids/tree/styling/src/index.tsx b/samples/grids/tree/styling/src/index.tsx new file mode 100644 index 0000000000..672322d209 --- /dev/null +++ b/samples/grids/tree/styling/src/index.tsx @@ -0,0 +1,39 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrTree, IgrTreeItem } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class TreeStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + + + + + + + + + + + + + + + +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/grids/tree/styling/tsconfig.json b/samples/grids/tree/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/grids/tree/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/grids/tree/styling/vite.config.js b/samples/grids/tree/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/grids/tree/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From dd2c3600b42087764f4da2f06ffa57f9454f32a3 Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Wed, 28 Jan 2026 15:43:46 +0200 Subject: [PATCH 26/30] feat(date-time-input): Add a styling sample (#1015) --- .../styling/.devcontainer/devcontainer.json | 4 + .../date-time-input/styling/.eslintrc.js | 75 +++++++++++++++++++ .../inputs/date-time-input/styling/README.md | 56 ++++++++++++++ .../inputs/date-time-input/styling/index.html | 11 +++ .../date-time-input/styling/package.json | 42 +++++++++++ .../styling/sandbox.config.json | 5 ++ .../date-time-input/styling/src/index.css | 17 +++++ .../date-time-input/styling/src/index.tsx | 49 ++++++++++++ .../date-time-input/styling/tsconfig.json | 44 +++++++++++ .../date-time-input/styling/vite.config.js | 12 +++ 10 files changed, 315 insertions(+) create mode 100644 samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/date-time-input/styling/.eslintrc.js create mode 100644 samples/inputs/date-time-input/styling/README.md create mode 100644 samples/inputs/date-time-input/styling/index.html create mode 100644 samples/inputs/date-time-input/styling/package.json create mode 100644 samples/inputs/date-time-input/styling/sandbox.config.json create mode 100644 samples/inputs/date-time-input/styling/src/index.css create mode 100644 samples/inputs/date-time-input/styling/src/index.tsx create mode 100644 samples/inputs/date-time-input/styling/tsconfig.json create mode 100644 samples/inputs/date-time-input/styling/vite.config.js diff --git a/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json b/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/date-time-input/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/.eslintrc.js b/samples/inputs/date-time-input/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/date-time-input/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/README.md b/samples/inputs/date-time-input/styling/README.md new file mode 100644 index 0000000000..2930dcde5a --- /dev/null +++ b/samples/inputs/date-time-input/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Date Time Input Styling feature using [Date Time-Input](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/date-time-input/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/date-time-input/styling/index.html b/samples/inputs/date-time-input/styling/index.html new file mode 100644 index 0000000000..174235ed9d --- /dev/null +++ b/samples/inputs/date-time-input/styling/index.html @@ -0,0 +1,11 @@ + + + + Date Time Input Overview + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json new file mode 100644 index 0000000000..0b896d8047 --- /dev/null +++ b/samples/inputs/date-time-input/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-date-time-input-overview", + "description": "This project provides example of Date Time Input Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/sandbox.config.json b/samples/inputs/date-time-input/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/date-time-input/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/src/index.css b/samples/inputs/date-time-input/styling/src/index.css new file mode 100644 index 0000000000..abad41d9a2 --- /dev/null +++ b/samples/inputs/date-time-input/styling/src/index.css @@ -0,0 +1,17 @@ +igc-date-time-input { + --_background: var(--ig-primary-200); + --_foreground: var(--ig-gray-900); + + --input-prefix-color: var(--_foreground); + --input-suffix-color: var(--_foreground); + --input-prefix-color--filled: var(--_foreground); + --input-suffix-color--filled: var(--_foreground); + --input-prefix-background: var(--_background); + --input-suffix-background: var(--_background); + --input-prefix-background--filled: var(--_background); + --input-suffix-background--filled: var(--_background); + --input-prefix-color--focused: var(--_foreground); + --input-suffix-color--focused: var(--_foreground); + --input-prefix-background--focused: var(--_background); + --input-suffix-background--focused: var(--_background); + } \ No newline at end of file diff --git a/samples/inputs/date-time-input/styling/src/index.tsx b/samples/inputs/date-time-input/styling/src/index.tsx new file mode 100644 index 0000000000..383094139f --- /dev/null +++ b/samples/inputs/date-time-input/styling/src/index.tsx @@ -0,0 +1,49 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrIcon, IgrDateTimeInput, DatePart, registerIconFromText } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +const upIconText = ''; +const downIconText = ''; +const clearIconText = ''; + +export default class DateTimeInputStyling extends React.Component { + + private dateTimeInput: IgrDateTimeInput; + constructor(props: any) { + super(props); + registerIconFromText("up", upIconText, "material"); + registerIconFromText("down", downIconText, "material"); + registerIconFromText("clear", clearIconText, "material"); + this.dateTimeInputRef = this.dateTimeInputRef.bind(this); + } + + public render(): JSX.Element { + return ( +
+ + this.dateTimeInput.clear()}> + + + this.dateTimeInput.stepUp(DatePart.Month)}> + + + this.dateTimeInput.stepDown(DatePart.Month)}> + + + +
+ ); + } + + public dateTimeInputRef(input: IgrDateTimeInput) { + if (!input) { return; } + this.dateTimeInput = input; + } + +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/date-time-input/styling/tsconfig.json b/samples/inputs/date-time-input/styling/tsconfig.json new file mode 100644 index 0000000000..8c0d146f95 --- /dev/null +++ b/samples/inputs/date-time-input/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/date-time-input/styling/vite.config.js b/samples/inputs/date-time-input/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/date-time-input/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 95453fb81f7e62c071f707f9bdbf51c457702b4d Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Thu, 29 Jan 2026 09:52:38 +0200 Subject: [PATCH 27/30] Add a styling sample for Checkbox (#1018) * feat(checkbox): Add a styling sample * fix(checkbox): add correct colors for styling sample --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/checkbox/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/checkbox/styling/README.md | 56 ++++++++++++++ samples/inputs/checkbox/styling/index.html | 11 +++ samples/inputs/checkbox/styling/package.json | 42 +++++++++++ .../checkbox/styling/sandbox.config.json | 5 ++ samples/inputs/checkbox/styling/src/index.css | 10 +++ samples/inputs/checkbox/styling/src/index.tsx | 26 +++++++ samples/inputs/checkbox/styling/tsconfig.json | 44 +++++++++++ .../inputs/checkbox/styling/vite.config.js | 12 +++ 10 files changed, 285 insertions(+) create mode 100644 samples/inputs/checkbox/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/checkbox/styling/.eslintrc.js create mode 100644 samples/inputs/checkbox/styling/README.md create mode 100644 samples/inputs/checkbox/styling/index.html create mode 100644 samples/inputs/checkbox/styling/package.json create mode 100644 samples/inputs/checkbox/styling/sandbox.config.json create mode 100644 samples/inputs/checkbox/styling/src/index.css create mode 100644 samples/inputs/checkbox/styling/src/index.tsx create mode 100644 samples/inputs/checkbox/styling/tsconfig.json create mode 100644 samples/inputs/checkbox/styling/vite.config.js diff --git a/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json b/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/checkbox/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/.eslintrc.js b/samples/inputs/checkbox/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/checkbox/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/README.md b/samples/inputs/checkbox/styling/README.md new file mode 100644 index 0000000000..7436b1d009 --- /dev/null +++ b/samples/inputs/checkbox/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Checkbox](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/checkbox/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/checkbox/styling/index.html b/samples/inputs/checkbox/styling/index.html new file mode 100644 index 0000000000..66efc1b31c --- /dev/null +++ b/samples/inputs/checkbox/styling/index.html @@ -0,0 +1,11 @@ + + + + CheckboxOverview + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json new file mode 100644 index 0000000000..327fd02b45 --- /dev/null +++ b/samples/inputs/checkbox/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-checkbox-overview", + "description": "This project provides example of Checkbox Overview using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/checkbox/styling/sandbox.config.json b/samples/inputs/checkbox/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/checkbox/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/src/index.css b/samples/inputs/checkbox/styling/src/index.css new file mode 100644 index 0000000000..4ab6ad20e1 --- /dev/null +++ b/samples/inputs/checkbox/styling/src/index.css @@ -0,0 +1,10 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + +igc-checkbox::part(indicator) { + --tick-color: var(--ig-secondary-500-contrast); /* check icon color */ +} + +igc-checkbox::part(control checked)::after { + --fill-color: var(--ig-secondary-500); /* checkbox background color */ +} \ No newline at end of file diff --git a/samples/inputs/checkbox/styling/src/index.tsx b/samples/inputs/checkbox/styling/src/index.tsx new file mode 100644 index 0000000000..255b14044c --- /dev/null +++ b/samples/inputs/checkbox/styling/src/index.tsx @@ -0,0 +1,26 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrCheckbox } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default class CheckboxStyling extends React.Component { + + constructor(props: any) { + super(props); + } + + public render(): JSX.Element { + return ( +
+ + Checkbox + +
+ ); + } +} + +// rendering above class to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/checkbox/styling/tsconfig.json b/samples/inputs/checkbox/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/checkbox/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/checkbox/styling/vite.config.js b/samples/inputs/checkbox/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/checkbox/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From 962377f040fa06e538cf84f017531b61b8fcfffc Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Thu, 29 Jan 2026 09:58:29 +0200 Subject: [PATCH 28/30] Add Styling sample fo Switch (#1012) * feat(switch): Add Styling sample * fix(switch): updating css to use vars --- .../styling/.devcontainer/devcontainer.json | 4 + samples/inputs/switches/styling/.eslintrc.js | 75 +++++++++++++++++++ samples/inputs/switches/styling/README.md | 56 ++++++++++++++ samples/inputs/switches/styling/index.html | 11 +++ samples/inputs/switches/styling/package.json | 42 +++++++++++ .../switches/styling/sandbox.config.json | 5 ++ samples/inputs/switches/styling/src/index.css | 10 +++ samples/inputs/switches/styling/src/index.tsx | 18 +++++ samples/inputs/switches/styling/tsconfig.json | 44 +++++++++++ .../inputs/switches/styling/vite.config.js | 12 +++ 10 files changed, 277 insertions(+) create mode 100644 samples/inputs/switches/styling/.devcontainer/devcontainer.json create mode 100644 samples/inputs/switches/styling/.eslintrc.js create mode 100644 samples/inputs/switches/styling/README.md create mode 100644 samples/inputs/switches/styling/index.html create mode 100644 samples/inputs/switches/styling/package.json create mode 100644 samples/inputs/switches/styling/sandbox.config.json create mode 100644 samples/inputs/switches/styling/src/index.css create mode 100644 samples/inputs/switches/styling/src/index.tsx create mode 100644 samples/inputs/switches/styling/tsconfig.json create mode 100644 samples/inputs/switches/styling/vite.config.js diff --git a/samples/inputs/switches/styling/.devcontainer/devcontainer.json b/samples/inputs/switches/styling/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e0b8e9c925 --- /dev/null +++ b/samples/inputs/switches/styling/.devcontainer/devcontainer.json @@ -0,0 +1,4 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:22" +} \ No newline at end of file diff --git a/samples/inputs/switches/styling/.eslintrc.js b/samples/inputs/switches/styling/.eslintrc.js new file mode 100644 index 0000000000..b45160a9ee --- /dev/null +++ b/samples/inputs/switches/styling/.eslintrc.js @@ -0,0 +1,75 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/inputs/switches/styling/README.md b/samples/inputs/switches/styling/README.md new file mode 100644 index 0000000000..4fabc5d775 --- /dev/null +++ b/samples/inputs/switches/styling/README.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Styling feature using [Switches](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/inputs/switches/styling +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/inputs/switches/styling/index.html b/samples/inputs/switches/styling/index.html new file mode 100644 index 0000000000..304d0bb440 --- /dev/null +++ b/samples/inputs/switches/styling/index.html @@ -0,0 +1,11 @@ + + + + SwitchChecking + + + +
+ + + \ No newline at end of file diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json new file mode 100644 index 0000000000..87113634e4 --- /dev/null +++ b/samples/inputs/switches/styling/package.json @@ -0,0 +1,42 @@ +{ + "name": "react-switch-checking", + "description": "This project provides example of Switch Checking using Infragistics React components", + "author": "Infragistics", + "homepage": ".", + "version": "1.4.0", + "private": true, + "scripts": { + "start": "vite --port 4200", + "build": "tsc && node --max-old-space-size=4096 node_modules/vite/bin/vite build", + "preview": "vite preview", + "test": "vitest" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "^19.4.0", + "igniteui-react-core": "19.3.1", + "igniteui-webcomponents": "^6.3.0", + "react": "^19.2.0", + "react-dom": "^19.2.0", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^24.7.1", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "@vitejs/plugin-react": "^5.0.4", + "@vitest/browser": "^3.2.4", + "typescript": "^4.8.4", + "vite": "^7.1.9", + "vitest": "^3.2.4", + "vitest-canvas-mock": "^0.3.3", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/inputs/switches/styling/sandbox.config.json b/samples/inputs/switches/styling/sandbox.config.json new file mode 100644 index 0000000000..00acba0c10 --- /dev/null +++ b/samples/inputs/switches/styling/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/inputs/switches/styling/src/index.css b/samples/inputs/switches/styling/src/index.css new file mode 100644 index 0000000000..fc42274b5e --- /dev/null +++ b/samples/inputs/switches/styling/src/index.css @@ -0,0 +1,10 @@ +/* shared styles are loaded from: */ +/* https://dl.infragistics.com/x/css/samples/shared.v8.css */ + + igc-switch { + --thumb-on-color: white; + --thumb-off-color: var(--ig-success-500); + --track-on-color: var(--ig-success-500); /* Background color when checked */ + --track-off-color: white; /* Background color when unchecked */ + --track-on-hover-color: var(--ig-success-500); /* Background hover color when checked */ + } diff --git a/samples/inputs/switches/styling/src/index.tsx b/samples/inputs/switches/styling/src/index.tsx new file mode 100644 index 0000000000..db4492f79e --- /dev/null +++ b/samples/inputs/switches/styling/src/index.tsx @@ -0,0 +1,18 @@ +import React from 'react'; +import ReactDOM from 'react-dom/client'; +import './index.css'; +import { IgrSwitch } from 'igniteui-react'; +import 'igniteui-webcomponents/themes/light/bootstrap.css'; + +export default function SwitchStyling() { + + return ( +
+ Label +
+ ); +} + +// rendering above component to the React DOM +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); diff --git a/samples/inputs/switches/styling/tsconfig.json b/samples/inputs/switches/styling/tsconfig.json new file mode 100644 index 0000000000..e7db8a94f5 --- /dev/null +++ b/samples/inputs/switches/styling/tsconfig.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": [ + "es6", + "dom" + ], + "sourceMap": true, + "allowJs": true, + "jsx": "react", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": [ + "src" + ] +} diff --git a/samples/inputs/switches/styling/vite.config.js b/samples/inputs/switches/styling/vite.config.js new file mode 100644 index 0000000000..1744dbc719 --- /dev/null +++ b/samples/inputs/switches/styling/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; +import react from '@vitejs/plugin-react'; + +export default defineConfig({ + plugins: [react()], + build: { + outDir: 'build' + }, + server: { + open: false + }, +}); \ No newline at end of file From c69a991c715c99f88355e723808e6aa2b2d61a4c Mon Sep 17 00:00:00 2001 From: Mariela Tihova Date: Fri, 30 Jan 2026 16:42:01 +0200 Subject: [PATCH 29/30] Fix interactive part of the Circular Progress sample (#1020) * fix(circular-progress): Fix interactive part of the sample * fix(circular-progress): Edit increment and decrement to handle state correctly --- .../src/DynamicCircularProgressStyle.css | 17 ++++ .../dynamic/src/index.tsx | 99 ++++++++----------- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css b/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css index b5b21b6e2f..e05d779cfd 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css +++ b/samples/inputs/circular-progress-indicator/dynamic/src/DynamicCircularProgressStyle.css @@ -1,4 +1,21 @@ igc-circular-progress { --diameter: 100px; --stroke-thickness: 5px; +} + +.sample-content { + width: 300px; + display: flex; + align-items: center; + margin-top: 30px; +} + +.circular-progress-container { + margin-right: 50px; + margin-left: 20px; +} + +.buttons-container { + display: flex; + gap: 10px; } \ No newline at end of file diff --git a/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx b/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx index 92eee138bc..9ec6e04d48 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx +++ b/samples/inputs/circular-progress-indicator/dynamic/src/index.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect, useState } from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import { IgrCircularProgress, IgrCircularGradient, IgrIconButton, IgrCircularProgressModule, IgrCircularGradientModule, IgrIconButtonModule, registerIconFromText } from 'igniteui-react'; @@ -12,70 +12,53 @@ IgrIconButtonModule.register(); const addIconText = ''; const removeIconText = ''; -export default class DynamicCircularProgress extends React.Component { +export default function DynamicCircularProgress() { - public circularProgress: IgrCircularProgress; - public addIcon: IgrIconButton; - public removeIcon: IgrIconButton; + const [currentValue, setCurrentValue] = useState(0); - constructor(props: any) { - super(props); + useEffect(() => { + registerIconFromText("add", addIconText, "material"); + registerIconFromText("remove", removeIconText, "material"); + }, []); - registerIconFromText( - "add", addIconText, "material" - ); - registerIconFromText( - "remove", removeIconText, "material" - ); - - this.circularProgressRef = this.circularProgressRef.bind(this); - this.onIconClick = this.onIconClick.bind(this); - } - - public render(): JSX.Element { - return ( -
- - - - - - - - -
- - - - -
-
- ); - } - - public circularProgressRef(progress: IgrCircularProgress) - { - if(!progress) { return; } - this.circularProgress = progress; + const incrementProgress = () => { + setCurrentValue((oldValue) => { + const newValue = oldValue + 10; + if (newValue > 100) { + return 100; + } + return newValue; + }); } - public onIconClick(e: any) { - const target = e.target as HTMLElement; - const iconButton: any = target.closest('igc-icon-button'); - if(iconButton.getAttribute("classname") === "removeIcon") - { - if(this.circularProgress.value > 0) { - this.circularProgress.value = this.circularProgress.value - 10; - } - else { - this.circularProgress.value = 0; + const decrementProgress = () => { + setCurrentValue((oldValue) => { + const newValue = oldValue - 10; + if (newValue < 0) { + return 0; } - } - else { - this.circularProgress.value = this.circularProgress.value + 10; - } - + return newValue; + }); } + + return ( +
+ + + + + + + + +
+ + + + +
+
+ ); } // rendering above class to the React DOM From caac521fce0a7b6535f13fa1620c2886a7dd2945 Mon Sep 17 00:00:00 2001 From: Deyan Kamburov Date: Tue, 3 Feb 2026 15:48:01 +0200 Subject: [PATCH 30/30] chore: update react packages to 19.3.2 --- browser/package-lock.json | 146 +++++++++--------- browser/package.json | 26 ++-- browser/public/meta.json | 2 +- browser/src/navigation/SamplesBrowser.json | 2 +- browser/tasks/gulp-samples.js | 24 +-- .../annotations-all/package.json | 8 +- .../annotations-callouts/package.json | 8 +- .../annotations-crosshairs/package.json | 8 +- .../annotations-custom/package.json | 8 +- .../annotations-final-value/package.json | 8 +- .../annotations-highlighting/package.json | 8 +- .../category-chart/annotations/package.json | 4 +- .../area-chart-multiple-sources/package.json | 4 +- .../area-chart-single-source/package.json | 4 +- .../area-chart-styling/package.json | 4 +- .../category-chart/axis-gap/package.json | 8 +- .../axis-gridlines/package.json | 8 +- .../category-chart/axis-inverted/package.json | 8 +- .../category-chart/axis-labels/package.json | 8 +- .../axis-locations/package.json | 8 +- .../category-chart/axis-options/package.json | 4 +- .../category-chart/axis-overlap/package.json | 8 +- .../category-chart/axis-range/package.json | 8 +- .../axis-tickmarks/package.json | 8 +- .../category-chart/axis-titles/package.json | 4 +- .../chart-highlight-filter/package.json | 8 +- .../package.json | 4 +- .../column-chart-single-source/package.json | 4 +- .../column-chart-styling/package.json | 4 +- .../package.json | 4 +- .../column-chart-with-tooltips/package.json | 8 +- .../custom-selection/package.json | 4 +- .../data-aggregations/package.json | 8 +- .../category-chart/data-filter/package.json | 8 +- .../package.json | 4 +- .../category-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-positioning/package.json | 8 +- .../category-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 8 +- .../high-frequency/package.json | 4 +- .../category-chart/high-volume/package.json | 4 +- .../highlighting-behavior/package.json | 8 +- .../highlighting-mode/package.json | 8 +- .../category-chart/highlighting/package.json | 4 +- .../legend-highlighting/package.json | 4 +- .../line-chart-multiple-sources/package.json | 4 +- .../line-chart-single-source/package.json | 4 +- .../line-chart-styling/package.json | 4 +- .../line-chart-with-animations/package.json | 4 +- .../line-chart-with-annotations/package.json | 4 +- .../marker-options/package.json | 8 +- .../marker-templates/package.json | 4 +- .../category-chart/overview/package.json | 4 +- .../point-chart-multiple-sources/package.json | 4 +- .../point-chart-single-source/package.json | 4 +- .../point-chart-styling/package.json | 4 +- .../selection-matcher/package.json | 4 +- .../selection-modes/package.json | 4 +- .../selection-multiple-modes/package.json | 8 +- .../spline-area-multiple-sources/package.json | 4 +- .../spline-area-single-source/package.json | 4 +- .../spline-area-styling/package.json | 4 +- .../spline-multiple-sources/package.json | 4 +- .../spline-single-source/package.json | 4 +- .../spline-styling/package.json | 4 +- .../category-chart/stack-columns/package.json | 4 +- .../step-area-multiple-sources/package.json | 4 +- .../step-area-single-source/package.json | 4 +- .../step-area-styling/package.json | 4 +- .../step-line-multiple-sources/package.json | 4 +- .../step-line-single-source/package.json | 4 +- .../step-line-styling/package.json | 4 +- .../tooltip-template/package.json | 4 +- .../category-chart/tooltip-types/package.json | 4 +- .../category-chart/trendline/package.json | 4 +- .../category-chart/value-lines/package.json | 8 +- .../chart-dashboard/package.json | 16 +- .../financial-dashboard/package.json | 18 +-- .../gauge-dashboard/package.json | 18 +-- .../local-data-source-dashboard/package.json | 18 +-- .../dashboard-tile/map-dashboard/package.json | 18 +-- .../dashboard-tile/pie-dashboard/package.json | 18 +-- .../annotations-custom/package.json | 4 +- .../package.json | 4 +- .../data-chart/axis-annotations/package.json | 4 +- .../data-chart/axis-crossing/package.json | 4 +- .../axis-label-rotation/package.json | 8 +- .../data-chart/axis-locations/package.json | 4 +- .../data-chart/axis-min-max-gap/package.json | 4 +- .../data-chart/axis-settings/package.json | 4 +- .../data-chart/axis-sharing/package.json | 4 +- .../charts/data-chart/axis-types/package.json | 4 +- .../bar-chart-multiple-sources/package.json | 4 +- .../bar-chart-overlapping/package.json | 4 +- .../bar-chart-single-source/package.json | 4 +- .../data-chart/bar-chart-styling/package.json | 4 +- .../callout-layer-styling/package.json | 4 +- .../package.json | 8 +- .../package.json | 8 +- .../chart-highlight-filter/package.json | 8 +- .../data-chart/chart-navigation/package.json | 4 +- .../data-chart/chart-overview/package.json | 4 +- .../data-chart/chart-performance/package.json | 4 +- .../chart-synchronization/package.json | 4 +- .../data-chart/chart-titles/package.json | 4 +- .../data-chart/composite-chart/package.json | 4 +- .../crosshair-layer-styling/package.json | 4 +- .../custom-drawing-annotations/package.json | 8 +- .../custom-editing-data/package.json | 4 +- .../data-chart/dash-array-axes/package.json | 4 +- .../data-chart/dash-array-series/package.json | 4 +- .../dash-array-tickmarks/package.json | 4 +- .../dash-array-trendline/package.json | 4 +- .../data-annotation-band-layer/package.json | 4 +- .../data-annotation-line-layer/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-annotation-rect-layer/package.json | 4 +- .../data-annotation-slice-layer/package.json | 4 +- .../data-annotation-strip-layer/package.json | 4 +- .../package.json | 4 +- .../data-legend-grouping/package.json | 4 +- .../data-legend-styling/package.json | 4 +- .../data-chart/data-legend/package.json | 4 +- .../package.json | 8 +- .../data-tooltip-grouping/package.json | 8 +- .../data-tooltip-styling/package.json | 8 +- .../data-chart/data-tooltip/package.json | 4 +- .../final-value-layer-styling/package.json | 4 +- .../financial-price-series/package.json | 4 +- .../data-chart/format-specifiers/package.json | 4 +- .../itemized-bar-chart/package.json | 4 +- .../itemized-column-chart/package.json | 4 +- .../itemized-stacked-bar-chart/package.json | 4 +- .../package.json | 4 +- .../charts/data-chart/legends/package.json | 4 +- .../polar-area-chart-styling/package.json | 4 +- .../data-chart/polar-area-chart/package.json | 4 +- .../data-chart/polar-chart-types/package.json | 4 +- .../data-chart/polar-line-chart/package.json | 4 +- .../polar-scatter-chart/package.json | 4 +- .../polar-spline-area-chart/package.json | 4 +- .../polar-spline-chart/package.json | 4 +- .../radial-area-chart-styling/package.json | 4 +- .../data-chart/radial-area-chart/package.json | 4 +- .../radial-chart-types/package.json | 4 +- .../package.json | 4 +- .../radial-column-chart/package.json | 4 +- .../data-chart/radial-label-mode/package.json | 8 +- .../data-chart/radial-line-chart/package.json | 4 +- .../data-chart/radial-pie-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../data-chart/range-area-chart/package.json | 4 +- .../range-column-chart/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../scatter-bubble-chart-styling/package.json | 4 +- .../scatter-line-chart/package.json | 4 +- .../scatter-line-threshold/package.json | 4 +- .../scatter-point-chart/package.json | 4 +- .../scatter-spline-chart/package.json | 4 +- .../data-chart/selection-matcher/package.json | 4 +- .../series-annotations/package.json | 4 +- .../series-highlighting/package.json | 4 +- .../series-marker-template/package.json | 4 +- .../data-chart/series-markers/package.json | 4 +- .../data-chart/series-tooltips/package.json | 4 +- .../data-chart/series-trendlines/package.json | 4 +- .../series-value-overlay/package.json | 4 +- .../stacked-100-area-chart/package.json | 4 +- .../stacked-100-bar-chart/package.json | 4 +- .../stacked-100-column-chart/package.json | 4 +- .../stacked-100-line-chart/package.json | 4 +- .../package.json | 4 +- .../stacked-100-spline-chart/package.json | 4 +- .../stacked-area-chart/package.json | 4 +- .../data-chart/stacked-bar-chart/package.json | 4 +- .../stacked-chart-types/package.json | 4 +- .../stacked-column-chart/package.json | 4 +- .../stacked-line-chart/package.json | 4 +- .../stacked-spline-area-chart/package.json | 4 +- .../stacked-spline-chart/package.json | 4 +- .../data-chart/tooltip-template/package.json | 4 +- .../data-chart/transition-event/package.json | 8 +- .../data-chart/trendline-layer/package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../package.json | 4 +- .../type-financial-ohlc-series/package.json | 4 +- .../type-financial-overlays/package.json | 4 +- .../type-financial-series/package.json | 4 +- .../type-range-area-series/package.json | 4 +- .../type-range-column-series/package.json | 4 +- .../data-chart/type-range-series/package.json | 4 +- .../type-scatter-area-series/package.json | 4 +- .../type-scatter-bubble-series/package.json | 4 +- .../type-scatter-contour-series/package.json | 4 +- .../type-scatter-hd-series/package.json | 4 +- .../type-scatter-polygon-series/package.json | 4 +- .../type-scatter-polyline-series/package.json | 4 +- .../type-scatter-series/package.json | 4 +- .../data-chart/type-shape-series/package.json | 4 +- .../user-annotation-layer/package.json | 8 +- .../data-chart/waterfall-chart/package.json | 4 +- .../animation-replay/package.json | 8 +- .../data-pie-chart/animation/package.json | 8 +- .../highlight-filter/package.json | 4 +- .../data-pie-chart/highlighting/package.json | 8 +- .../charts/data-pie-chart/legend/package.json | 8 +- .../charts/data-pie-chart/others/package.json | 8 +- .../data-pie-chart/overview/package.json | 4 +- .../data-pie-chart/selection/package.json | 8 +- .../doughnut-chart/animation/package.json | 4 +- .../doughnut-chart/explosion/package.json | 4 +- .../charts/doughnut-chart/legend/package.json | 4 +- .../doughnut-chart/overview/package.json | 4 +- .../charts/doughnut-chart/rings/package.json | 4 +- .../doughnut-chart/selection/package.json | 4 +- .../financial-chart/annotations/package.json | 4 +- .../financial-chart/axis-types/package.json | 4 +- .../package.json | 4 +- .../data-legend-styling-props/package.json | 4 +- .../financial-chart/data-legend/package.json | 4 +- .../package.json | 4 +- .../data-tooltip-styling-props/package.json | 4 +- .../financial-chart/data-tooltip/package.json | 4 +- .../format-specifiers/package.json | 4 +- .../high-frequency/package.json | 4 +- .../financial-chart/high-volume/package.json | 4 +- .../indicator-customization/package.json | 4 +- .../indicator-types/package.json | 4 +- .../multiple-data/package.json | 4 +- .../financial-chart/overview/package.json | 4 +- .../charts/financial-chart/panes/package.json | 4 +- .../financial-chart/performance/package.json | 4 +- .../financial-chart/scrollbars/package.json | 4 +- .../stock-index-chart/package.json | 4 +- .../financial-chart/styling/package.json | 4 +- .../financial-chart/titles/package.json | 4 +- .../tooltip-types/package.json | 4 +- .../financial-chart/trendlines/package.json | 4 +- .../financial-chart/volume-types/package.json | 4 +- .../charts/pie-chart/animation/package.json | 4 +- .../charts/pie-chart/explosion/package.json | 4 +- samples/charts/pie-chart/legend/package.json | 4 +- samples/charts/pie-chart/others/package.json | 4 +- .../charts/pie-chart/overview/package.json | 4 +- .../charts/pie-chart/selection/package.json | 4 +- samples/charts/pie-chart/styling/package.json | 4 +- .../sparkline/display-area/package.json | 4 +- .../sparkline/display-column/package.json | 4 +- .../sparkline/display-lines/package.json | 8 +- .../sparkline/display-types/package.json | 4 +- .../sparkline/display-winloss/package.json | 4 +- samples/charts/sparkline/grid/package.json | 8 +- samples/charts/sparkline/markers/package.json | 8 +- .../sparkline/normal-range/package.json | 8 +- .../charts/sparkline/trendlines/package.json | 8 +- .../sparkline/unknown-values/package.json | 8 +- .../package.json | 10 +- .../actions-built-in-data-chart/package.json | 8 +- .../toolbar/color-editor-support/package.json | 8 +- .../charts/toolbar/custom-tool/package.json | 8 +- .../package.json | 8 +- .../package.json | 8 +- samples/charts/toolbar/theming/package.json | 8 +- samples/charts/tree-map/events/package.json | 4 +- .../highlighting-percent-based/package.json | 4 +- .../charts/tree-map/highlighting/package.json | 8 +- samples/charts/tree-map/layout/package.json | 8 +- samples/charts/tree-map/overview/package.json | 4 +- samples/charts/tree-map/styling/package.json | 4 +- .../charts/zoomslider/overview/package.json | 4 +- .../overview/package.json | 8 +- .../x-date-picker/date-limits/package.json | 6 +- .../x-date-picker/editing/package.json | 6 +- .../editors/x-date-picker/format/package.json | 6 +- .../x-date-picker/overview/package.json | 6 +- .../editors/x-date-picker/range/package.json | 6 +- .../operations-on-workbooks/package.json | 8 +- .../operations-on-worksheets/package.json | 4 +- .../excel/excel-library/overview/package.json | 4 +- .../working-with-cells/package.json | 4 +- .../working-with-charts/package.json | 10 +- .../working-with-sparklines/package.json | 10 +- .../excel/spreadsheet/activation/package.json | 6 +- .../spreadsheet/adapter-chart/package.json | 10 +- .../spreadsheet/adapter-combo/package.json | 10 +- .../excel/spreadsheet/clipboard/package.json | 6 +- .../excel/spreadsheet/commands/package.json | 6 +- .../conditional-formatting/package.json | 6 +- .../spreadsheet/config-options/package.json | 6 +- .../spreadsheet/data-validation/package.json | 6 +- .../spreadsheet/filter-dialog/package.json | 6 +- .../spreadsheet/format-dialog/package.json | 6 +- .../excel/spreadsheet/hyperlinks/package.json | 6 +- .../excel/spreadsheet/overview/package.json | 6 +- .../spreadsheet/sort-dialog/package.json | 6 +- .../bullet-graph/animation/package.json | 4 +- .../bullet-graph/background/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/bullet-graph/labels/package.json | 4 +- .../gauges/bullet-graph/measures/package.json | 4 +- .../gauges/bullet-graph/ranges/package.json | 4 +- .../gauges/bullet-graph/scale/package.json | 4 +- .../bullet-graph/tickmarks/package.json | 4 +- .../bullet-graph/type-filled/package.json | 4 +- .../bullet-graph/type-horizontal/package.json | 4 +- .../bullet-graph/type-reversed/package.json | 4 +- .../bullet-graph/type-segmented/package.json | 4 +- .../bullet-graph/type-vertical/package.json | 4 +- .../linear-gauge/animation/package.json | 4 +- .../gauges/linear-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/linear-gauge/labels/package.json | 4 +- .../gauges/linear-gauge/needle/package.json | 4 +- .../gauges/linear-gauge/ranges/package.json | 4 +- .../gauges/linear-gauge/scale/package.json | 4 +- .../linear-gauge/tickmarks/package.json | 4 +- .../linear-gauge/type-curved/package.json | 4 +- .../linear-gauge/type-filled/package.json | 4 +- .../linear-gauge/type-horizontal/package.json | 4 +- .../type-multi-range/package.json | 4 +- .../type-multi-scale/package.json | 4 +- .../linear-gauge/type-segmented/package.json | 4 +- .../linear-gauge/type-vertical/package.json | 4 +- .../radial-gauge/animation/package.json | 4 +- .../gauges/radial-gauge/backing/package.json | 4 +- .../highlight-needle/package.json | 4 +- .../gauges/radial-gauge/labels/package.json | 4 +- .../gauges/radial-gauge/needle/package.json | 4 +- .../radial-gauge/optical-scaling/package.json | 4 +- .../gauges/radial-gauge/ranges/package.json | 4 +- .../gauges/radial-gauge/scale/package.json | 4 +- .../radial-gauge/tickmarks/package.json | 4 +- .../radial-gauge/type-column/package.json | 4 +- .../radial-gauge/type-curved/package.json | 4 +- .../radial-gauge/type-direction/package.json | 4 +- .../radial-gauge/type-full/package.json | 4 +- .../radial-gauge/type-half/package.json | 4 +- .../radial-gauge/type-quatre/package.json | 4 +- .../radial-gauge/type-ring/package.json | 4 +- .../radial-gauge/type-segmented/package.json | 4 +- .../radial-gauge/type-semi/package.json | 4 +- .../data-grid/accessibility/package.json | 8 +- .../binding-data-service/package.json | 8 +- .../data-grid/binding-live-data/package.json | 10 +- .../data-grid/binding-local-data/package.json | 8 +- .../binding-remote-data/package.json | 10 +- .../data-grid/cell-activation/package.json | 8 +- .../grids/data-grid/cell-editing/package.json | 8 +- .../grids/data-grid/cell-merging/package.json | 8 +- .../data-grid/cell-selection/package.json | 8 +- .../data-grid/column-animation/package.json | 8 +- .../column-chooser-picker/package.json | 8 +- .../column-chooser-toolbar/package.json | 8 +- .../column-filter-expressions/package.json | 8 +- .../column-filter-operands/package.json | 8 +- .../data-grid/column-filtering/package.json | 8 +- .../data-grid/column-moving/package.json | 8 +- .../data-grid/column-options/package.json | 8 +- .../column-pinning-picker/package.json | 8 +- .../column-pinning-toolbar/package.json | 8 +- .../data-grid/column-resizing/package.json | 8 +- .../data-grid/column-scrolling/package.json | 8 +- .../data-grid/column-sorting/package.json | 8 +- .../data-grid/column-summaries/package.json | 8 +- .../grids/data-grid/column-types/package.json | 10 +- .../data-grid/load-save-layout/package.json | 10 +- .../grids/data-grid/localization/package.json | 8 +- samples/grids/data-grid/overview/package.json | 10 +- samples/grids/data-grid/pager/package.json | 8 +- .../grids/data-grid/performance/package.json | 8 +- .../row-group-descriptions/package.json | 8 +- .../grids/data-grid/row-grouping/package.json | 8 +- .../data-grid/row-highlighting/package.json | 8 +- .../grids/data-grid/row-paging/package.json | 8 +- .../grids/data-grid/row-pinning/package.json | 8 +- .../data-grid/row-selection/package.json | 8 +- .../type-comparison-table/package.json | 8 +- .../data-grid/type-heatmap-table/package.json | 8 +- .../type-marketing-table/package.json | 8 +- .../data-grid/type-matrix-table/package.json | 8 +- .../type-periodic-table/package.json | 8 +- samples/grids/grid/action-strip/package.json | 6 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../grid/binding-composite-data/package.json | 2 +- .../grids/grid/binding-crud-data/package.json | 6 +- .../grid/binding-nested-data-1/package.json | 2 +- .../grids/grid/cascading-combo/package.json | 2 +- .../grid/cell-editing-sample/package.json | 2 +- .../grid/cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- samples/grids/grid/cell-merge/package.json | 8 +- .../grid/cell-selection-mode/package.json | 6 +- .../grid/cell-selection-style/package.json | 2 +- .../grid/change-icons-custom/package.json | 8 +- .../grid/clipboard-operations/package.json | 8 +- .../grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../grids/grid/column-data-types/package.json | 2 +- .../grid/column-hiding-options/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../grid/column-hiding-toolbar/package.json | 2 +- .../grid/column-moving-options/package.json | 2 +- .../grid/column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../grid/column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../grid/column-pinning-styles/package.json | 2 +- .../grids/grid/column-pinning/package.json | 2 +- .../grid/column-resize-styling/package.json | 2 +- .../grids/grid/column-resizing/package.json | 2 +- .../grid/column-selection-group/package.json | 2 +- .../grid/column-selection-mode/package.json | 6 +- .../grid/column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../grid/column-sorting-options/package.json | 6 +- .../grid/column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 6 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../grid/custom-context-menu/package.json | 8 +- .../data-batch-editing-actions/package.json | 6 +- .../package.json | 2 +- .../grids/grid/data-searching/package.json | 8 +- .../grid/data-summary-formatter/package.json | 2 +- .../grid/data-summary-options/package.json | 2 +- .../grid/data-summary-template/package.json | 6 +- .../grid/data-validation-style/package.json | 2 +- .../package.json | 6 +- .../package.json | 6 +- .../grid/data-validator-service/package.json | 6 +- .../grid/disabled-summaries/package.json | 8 +- .../grids/grid/editing-columns/package.json | 2 +- .../grids/grid/editing-events/package.json | 2 +- .../grid/editing-excel-style/package.json | 8 +- .../grids/grid/editing-lifecycle/package.json | 2 +- .../grids/grid/excel-exporting/package.json | 2 +- .../package.json | 6 +- .../package.json | 6 +- .../package.json | 6 +- .../excel-style-filtering-style/package.json | 6 +- .../external-advanced-filtering/package.json | 6 +- .../grids/grid/filtering-options/package.json | 6 +- .../grid/filtering-strategy/package.json | 2 +- .../grids/grid/filtering-style/package.json | 6 +- samples/grids/grid/finjs/package.json | 10 +- .../grids/grid/groupby-custom/package.json | 8 +- .../grid/groupby-expressions/package.json | 2 +- .../grids/grid/groupby-paging/package.json | 2 +- .../grids/grid/groupby-styling/package.json | 2 +- .../grid/groupby-summary-options/package.json | 6 +- .../grid/groupby-summary-styling/package.json | 6 +- .../grids/grid/infinite-scroll/package.json | 8 +- .../keyboard-custom-navigation/package.json | 6 +- .../grid/keyboard-mrl-navigation/package.json | 2 +- .../grid/layout-display-density/package.json | 6 +- samples/grids/grid/master-detail/package.json | 2 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../multi-row-layout-options/package.json | 2 +- .../grid/multi-row-layout-style/package.json | 2 +- samples/grids/grid/overview/package.json | 2 +- samples/grids/grid/paste/package.json | 6 +- .../grid/remote-paging-data/package.json | 6 +- .../grid/remote-paging-grid/package.json | 8 +- samples/grids/grid/row-adding/package.json | 2 +- samples/grids/grid/row-classes/package.json | 2 +- samples/grids/grid/row-drag-base/package.json | 8 +- .../grid/row-editing-options/package.json | 2 +- .../grids/grid/row-editing-style/package.json | 2 +- .../grids/grid/row-paging-basic/package.json | 2 +- .../grid/row-paging-options/package.json | 6 +- .../grids/grid/row-pinning-drag/package.json | 6 +- .../row-pinning-extra-column/package.json | 6 +- .../grid/row-pinning-options/package.json | 6 +- .../grids/grid/row-pinning-style/package.json | 2 +- samples/grids/grid/row-reorder/package.json | 6 +- .../grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 6 +- .../package.json | 2 +- samples/grids/grid/row-styles/package.json | 2 +- .../grid/state-persistence-about/package.json | 8 +- .../grid/state-persistence-main/package.json | 8 +- .../grid/styling-custom-CSS/package.json | 2 +- .../grids/grid/toolbar-sample-1/package.json | 2 +- .../grids/grid/toolbar-sample-2/package.json | 2 +- .../grids/grid/toolbar-sample-3/package.json | 2 +- samples/grids/grid/toolbar-style/package.json | 2 +- .../action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- .../hierarchical-grid/cell-merge/package.json | 8 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-overview/package.json | 6 +- .../cell-selection-style/package.json | 6 +- .../column-auto-sizing/package.json | 8 +- .../column-collapsible-groups/package.json | 2 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 6 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 2 +- .../column-sorting-style/package.json | 2 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../custom-filtering/package.json | 2 +- .../data-exporting-indicator/package.json | 8 +- .../package.json | 8 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 6 +- .../disabled-summaries/package.json | 8 +- .../editing-columns/package.json | 2 +- .../editing-events/package.json | 2 +- .../editing-lifecycle/package.json | 2 +- .../excel-exporting/package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../filtering-options/package.json | 2 +- .../filtering-style/package.json | 2 +- .../hierarchical-grid-options/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid-styling/package.json | 2 +- .../layout-display-density/package.json | 6 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../hierarchical-grid/overview/package.json | 2 +- .../remote-paging-hgrid/package.json | 8 +- .../hierarchical-grid/row-adding/package.json | 2 +- .../row-classes/package.json | 2 +- .../row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 2 +- .../row-editing-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 6 +- .../row-pinning-options/package.json | 6 +- .../row-pinning-style/package.json | 2 +- .../row-reorder/package.json | 2 +- .../row-selection-mode/package.json | 6 +- .../package.json | 2 +- .../hierarchical-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../toolbar-sample-3/package.json | 2 +- .../toolbar-sample-4/package.json | 8 +- .../toolbar-style/package.json | 2 +- .../grids/list/add-list-items/package.json | 2 +- .../grids/list/list-item-content/package.json | 2 +- samples/grids/list/overview/package.json | 2 +- samples/grids/list/styling/package.json | 2 +- .../aggregate-max-sales/package.json | 2 +- .../aggregate-units-sold/package.json | 2 +- .../pivot-grid/data-selector/package.json | 8 +- .../grids/pivot-grid/features/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../grids/tree-grid/action-strip/package.json | 2 +- .../advanced-filtering-options/package.json | 2 +- .../advanced-filtering-style/package.json | 2 +- .../cell-editing-sample/package.json | 2 +- .../cell-editing-styling/package.json | 2 +- .../cell-merge-custom-sample/package.json | 8 +- .../grids/tree-grid/cell-merge/package.json | 8 +- .../cell-selection-mode/package.json | 6 +- .../cell-selection-style/package.json | 2 +- .../clipboard-operations/package.json | 8 +- .../tree-grid/column-auto-sizing/package.json | 2 +- .../column-collapsible-groups/package.json | 2 +- .../tree-grid/column-data-types/package.json | 8 +- .../column-hiding-toolbar-style/package.json | 2 +- .../column-hiding-toolbar/package.json | 2 +- .../column-moving-options/package.json | 2 +- .../column-moving-styles/package.json | 2 +- .../column-pinning-both-sides/package.json | 8 +- .../column-pinning-options/package.json | 2 +- .../column-pinning-right-side/package.json | 2 +- .../column-pinning-styles/package.json | 2 +- .../column-pinning-toolbar/package.json | 2 +- .../tree-grid/column-pinning/package.json | 2 +- .../column-resize-styling/package.json | 2 +- .../tree-grid/column-resizing/package.json | 2 +- .../column-selection-group/package.json | 2 +- .../column-selection-mode/package.json | 6 +- .../column-selection-style/package.json | 8 +- .../column-selection-styles/package.json | 2 +- .../column-sorting-indicators/package.json | 2 +- .../column-sorting-options/package.json | 6 +- .../column-sorting-style/package.json | 6 +- .../conditional-cell-style-1/package.json | 2 +- .../conditional-cell-style-2/package.json | 2 +- .../conditional-row-selectors/package.json | 2 +- .../data-exporting-indicator/package.json | 8 +- .../data-summary-children/package.json | 6 +- .../data-summary-formatter/package.json | 2 +- .../data-summary-options-styling/package.json | 2 +- .../data-summary-options/package.json | 2 +- .../data-summary-template/package.json | 6 +- .../tree-grid/disabled-summaries/package.json | 8 +- .../tree-grid/editing-columns/package.json | 2 +- .../tree-grid/editing-events/package.json | 2 +- .../tree-grid/editing-lifecycle/package.json | 2 +- .../tree-grid/excel-exporting/package.json | 2 +- .../package.json | 6 +- .../package.json | 2 +- .../package.json | 2 +- .../excel-style-filtering-style/package.json | 2 +- .../tree-grid/filtering-options/package.json | 2 +- .../tree-grid/filtering-style/package.json | 2 +- .../keyboard-custom-navigation/package.json | 6 +- .../layout-display-density/package.json | 6 +- .../multi-cell-selection-mode/package.json | 8 +- .../multi-column-headers-export/package.json | 2 +- .../package.json | 6 +- .../multi-column-headers-styling/package.json | 2 +- .../package.json | 2 +- .../tree-grid/overview-styling/package.json | 2 +- samples/grids/tree-grid/overview/package.json | 6 +- .../grids/tree-grid/row-adding/package.json | 2 +- .../grids/tree-grid/row-classes/package.json | 2 +- .../tree-grid/row-drag-base/package.json | 8 +- .../row-editing-options/package.json | 2 +- .../tree-grid/row-editing-style/package.json | 2 +- .../tree-grid/row-paging-basic/package.json | 2 +- .../tree-grid/row-paging-options/package.json | 6 +- .../tree-grid/row-paging-style/package.json | 2 +- .../row-pinning-extra-column/package.json | 2 +- .../row-pinning-options/package.json | 6 +- .../tree-grid/row-pinning-style/package.json | 2 +- .../grids/tree-grid/row-reorder/package.json | 2 +- .../tree-grid/row-selection-mode/package.json | 6 +- .../row-selection-template-excel/package.json | 2 +- .../package.json | 2 +- .../grids/tree-grid/row-styles/package.json | 2 +- .../state-persistence-about/package.json | 8 +- .../state-persistence-main/package.json | 8 +- .../tree-grid/toolbar-sample-1/package.json | 2 +- .../tree-grid/toolbar-sample-2/package.json | 8 +- .../tree-grid/toolbar-sample-3/package.json | 2 +- .../tree-grid/toolbar-sample-4/package.json | 8 +- .../tree-grid/toolbar-style/package.json | 2 +- .../using-primary-foreign-keys/package.json | 2 +- samples/grids/tree/basic-example/package.json | 2 +- samples/grids/tree/styling/package.json | 2 +- samples/inputs/badge/outlined/package.json | 2 +- samples/inputs/badge/shape/package.json | 2 +- samples/inputs/badge/styling/package.json | 2 +- samples/inputs/badge/variants/package.json | 2 +- .../button-group/alignment/package.json | 2 +- .../inputs/button-group/overview/package.json | 2 +- .../button-group/selection/package.json | 2 +- samples/inputs/button-group/size/package.json | 2 +- .../inputs/button-group/styling/package.json | 2 +- samples/inputs/button/contained/package.json | 2 +- samples/inputs/button/download/package.json | 2 +- samples/inputs/button/fab/package.json | 2 +- samples/inputs/button/flat/package.json | 2 +- samples/inputs/button/outlined/package.json | 2 +- samples/inputs/button/overview/package.json | 2 +- samples/inputs/button/size/package.json | 2 +- samples/inputs/button/styling/package.json | 2 +- samples/inputs/checkbox/checking/package.json | 2 +- samples/inputs/checkbox/disabled/package.json | 2 +- .../checkbox/indeterminate/package.json | 2 +- samples/inputs/checkbox/label/package.json | 2 +- samples/inputs/checkbox/overview/package.json | 2 +- samples/inputs/checkbox/styling/package.json | 2 +- samples/inputs/chip/multiple/package.json | 2 +- samples/inputs/chip/overview/package.json | 2 +- samples/inputs/chip/size/package.json | 2 +- samples/inputs/chip/styling/package.json | 2 +- samples/inputs/chip/variants/package.json | 2 +- .../dynamic/package.json | 2 +- .../indeterminate/package.json | 2 +- .../simple/package.json | 2 +- .../styling/package.json | 2 +- .../inputs/color-editor/overview/package.json | 4 +- samples/inputs/combo/features/package.json | 2 +- samples/inputs/combo/overview/package.json | 2 +- samples/inputs/combo/selection/package.json | 2 +- samples/inputs/combo/simplified/package.json | 2 +- samples/inputs/combo/styling/package.json | 2 +- samples/inputs/combo/templates/package.json | 6 +- .../input-format-display-format/package.json | 2 +- .../min-max-value/package.json | 2 +- .../date-time-input/overview/package.json | 2 +- .../date-time-input/step-up-down/package.json | 2 +- .../date-time-input/styling/package.json | 2 +- samples/inputs/dropdown/group/package.json | 2 +- samples/inputs/dropdown/header/package.json | 2 +- samples/inputs/dropdown/item/package.json | 2 +- samples/inputs/dropdown/overview/package.json | 2 +- samples/inputs/dropdown/position/package.json | 2 +- samples/inputs/dropdown/styling/package.json | 2 +- samples/inputs/dropdown/target/package.json | 2 +- samples/inputs/icon-button/size/package.json | 2 +- .../inputs/icon-button/styling/package.json | 2 +- .../inputs/icon-button/variant/package.json | 2 +- samples/inputs/input/helper-text/package.json | 2 +- samples/inputs/input/overview/package.json | 2 +- .../inputs/input/prefix-suffix/package.json | 2 +- samples/inputs/input/size/package.json | 2 +- samples/inputs/input/styling/package.json | 2 +- .../dynamic/package.json | 2 +- .../simple/package.json | 2 +- .../striped/package.json | 2 +- .../styling/package.json | 2 +- .../types/package.json | 2 +- .../mask-input/applying-mask/package.json | 2 +- .../inputs/mask-input/overview/package.json | 2 +- .../mask-input/value-modes/package.json | 2 +- samples/inputs/radio/alignment/package.json | 2 +- samples/inputs/radio/disabled/package.json | 2 +- samples/inputs/radio/group/package.json | 2 +- samples/inputs/radio/invalid/package.json | 2 +- samples/inputs/radio/label/package.json | 2 +- samples/inputs/radio/styling/package.json | 2 +- samples/inputs/rating/basic/package.json | 2 +- samples/inputs/rating/custom/package.json | 2 +- samples/inputs/rating/empty/package.json | 2 +- .../rating/single-selection/package.json | 2 +- samples/inputs/rating/styling/package.json | 2 +- samples/inputs/ripple/button/package.json | 2 +- samples/inputs/ripple/color/package.json | 2 +- samples/inputs/select/group/package.json | 2 +- samples/inputs/select/header/package.json | 2 +- samples/inputs/select/item/package.json | 2 +- samples/inputs/select/overview/package.json | 2 +- samples/inputs/select/styling/package.json | 2 +- .../inputs/slider/constraints/package.json | 2 +- samples/inputs/slider/disabled/package.json | 2 +- samples/inputs/slider/discrete/package.json | 2 +- samples/inputs/slider/labels/package.json | 2 +- samples/inputs/slider/overview/package.json | 2 +- samples/inputs/slider/styling/package.json | 2 +- .../inputs/slider/tick-labels/package.json | 2 +- samples/inputs/slider/ticks/package.json | 2 +- .../inputs/slider/value-format/package.json | 2 +- samples/inputs/slider/value/package.json | 2 +- samples/inputs/switches/checking/package.json | 2 +- samples/inputs/switches/disabled/package.json | 2 +- samples/inputs/switches/label/package.json | 2 +- samples/inputs/switches/overview/package.json | 2 +- samples/inputs/switches/styling/package.json | 2 +- .../textarea/form-integration/package.json | 2 +- samples/inputs/textarea/overview/package.json | 2 +- samples/inputs/textarea/resize/package.json | 2 +- samples/inputs/textarea/slots/package.json | 2 +- samples/inputs/textarea/styling/package.json | 2 +- samples/inputs/tooltip/advanced/package.json | 4 +- samples/inputs/tooltip/overview/package.json | 2 +- samples/inputs/tooltip/placement/package.json | 2 +- samples/inputs/tooltip/rich/package.json | 2 +- samples/inputs/tooltip/styling/package.json | 2 +- samples/inputs/tooltip/triggers/package.json | 2 +- .../interactions/chat/features/package.json | 2 +- .../interactions/chat/overview/package.json | 2 +- .../interactions/chat/styling/package.json | 2 +- .../accordion/customization/package.json | 2 +- .../accordion/nested-scenario/package.json | 2 +- .../layouts/accordion/overview/package.json | 2 +- samples/layouts/avatar/icon/package.json | 2 +- samples/layouts/avatar/image/package.json | 2 +- samples/layouts/avatar/initials/package.json | 2 +- samples/layouts/avatar/shape/package.json | 2 +- samples/layouts/avatar/size/package.json | 2 +- samples/layouts/avatar/styling/package.json | 2 +- samples/layouts/card/horizontal/package.json | 2 +- samples/layouts/card/overview/package.json | 2 +- .../layouts/card/semi-horizontal/package.json | 2 +- samples/layouts/card/styling/package.json | 2 +- .../layouts/carousel/animations/package.json | 2 +- .../layouts/carousel/components/package.json | 2 +- .../layouts/carousel/overview/package.json | 2 +- .../layouts/carousel/thumbnail/package.json | 2 +- samples/layouts/divider/dashed/package.json | 2 +- samples/layouts/divider/middle/package.json | 2 +- samples/layouts/divider/overview/package.json | 2 +- samples/layouts/divider/select/package.json | 2 +- samples/layouts/divider/vertical/package.json | 2 +- .../customize-buttons/package.json | 2 +- .../embedding-frames/package.json | 2 +- .../dock-manager/overview/package.json | 2 +- .../layouts/dock-manager/styling/package.json | 2 +- .../dock-manager/updating-panes/package.json | 6 +- .../component-customization/package.json | 2 +- .../properties-and-events/package.json | 2 +- .../expansion-panel/styling/package.json | 2 +- .../expansion-panel/usage/package.json | 2 +- samples/layouts/icon/sizing/package.json | 2 +- samples/layouts/icon/styling/package.json | 2 +- .../layouts/stepper/animations/package.json | 2 +- samples/layouts/stepper/linear/package.json | 2 +- .../layouts/stepper/orientation/package.json | 2 +- .../layouts/stepper/steptypes/package.json | 2 +- samples/layouts/stepper/styling/package.json | 2 +- samples/layouts/tabs/alignment/package.json | 2 +- samples/layouts/tabs/overview/package.json | 2 +- .../layouts/tabs/prefix-suffix/package.json | 2 +- samples/layouts/tabs/scrolling/package.json | 2 +- samples/layouts/tabs/styling/package.json | 2 +- .../layouts/tile-manager/actions/package.json | 2 +- .../tile-manager/columngap/package.json | 2 +- .../tile-manager/dragndrop/package.json | 2 +- .../layouts/tile-manager/layout/package.json | 2 +- .../tile-manager/overview/package.json | 2 +- .../layouts/tile-manager/resize/package.json | 2 +- .../layouts/tile-manager/styling/package.json | 2 +- .../geo-map/binding-data-csv/package.json | 6 +- .../binding-data-json-points/package.json | 6 +- .../binding-data-json-shapes/package.json | 6 +- .../geo-map/binding-data-model/package.json | 6 +- .../binding-multiple-shapes/package.json | 6 +- .../binding-multiple-sources/package.json | 6 +- .../geo-map/binding-shp-points/package.json | 6 +- .../geo-map/binding-shp-polygons/package.json | 6 +- .../binding-shp-polylines/package.json | 6 +- .../maps/geo-map/custom-tooltips/package.json | 6 +- .../geo-map/display-all-imagery/package.json | 6 +- .../display-azure-imagery/package.json | 6 +- .../geo-map/display-bing-imagery/package.json | 6 +- .../display-custom-imagery/package.json | 6 +- .../geo-map/display-esri-imagery/package.json | 6 +- .../geo-map/display-heat-imagery/package.json | 6 +- .../geo-map/display-osm-imagery/package.json | 6 +- .../maps/geo-map/marker-layouts/package.json | 6 +- .../maps/geo-map/marker-template/package.json | 6 +- samples/maps/geo-map/marker-type/package.json | 6 +- samples/maps/geo-map/nav-grid/package.json | 6 +- .../navigation-only-panning/package.json | 6 +- samples/maps/geo-map/navigation/package.json | 6 +- samples/maps/geo-map/overview/package.json | 6 +- .../maps/geo-map/shape-selection/package.json | 8 +- .../maps/geo-map/shape-styling/package.json | 6 +- .../maps/geo-map/synchronization/package.json | 6 +- .../geo-map/triangulating-data/package.json | 6 +- .../type-scatter-area-series/package.json | 6 +- .../type-scatter-bubble-series/package.json | 6 +- .../type-scatter-contour-series/package.json | 6 +- .../type-scatter-density-series/package.json | 6 +- .../type-scatter-symbol-series/package.json | 6 +- .../type-shape-polygon-series/package.json | 6 +- .../type-shape-polyline-series/package.json | 6 +- samples/menus/nav-bar/overview/package.json | 2 +- samples/menus/nav-bar/styling/package.json | 2 +- .../nav-drawer/add-drawer-items/package.json | 2 +- .../menus/nav-drawer/add-mini/package.json | 2 +- .../add-positions-navbar/package.json | 2 +- samples/menus/nav-drawer/styling/package.json | 2 +- .../banner-advanced-sample/package.json | 2 +- .../banner/banner-sample-1/package.json | 2 +- .../banner/banner-sample-2/package.json | 2 +- .../banner/banner-styling/package.json | 2 +- .../dialog/closing-variations/package.json | 2 +- .../notifications/dialog/form/package.json | 2 +- .../dialog/overview/package.json | 2 +- .../notifications/dialog/styling/package.json | 2 +- .../snackbar/action-text/package.json | 2 +- .../snackbar/display-time/package.json | 2 +- .../snackbar/overview/package.json | 2 +- .../snackbar/styling/package.json | 2 +- .../notifications/toast/overview/package.json | 2 +- .../toast/properties/package.json | 2 +- .../notifications/toast/styling/package.json | 2 +- .../calendar/disabled-dates/package.json | 2 +- .../calendar/formatting/package.json | 2 +- .../scheduling/calendar/header/package.json | 2 +- .../calendar/multiple-months/package.json | 2 +- .../calendar/multiple-selection/package.json | 2 +- .../scheduling/calendar/overview/package.json | 2 +- .../calendar/range-selection/package.json | 2 +- samples/scheduling/calendar/size/package.json | 2 +- .../calendar/special-dates/package.json | 2 +- .../scheduling/calendar/styling/package.json | 2 +- .../calendar/week-numbers/package.json | 2 +- .../date-picker/dialog-mode/package.json | 2 +- .../scheduling/date-picker/form/package.json | 2 +- .../date-picker/format/package.json | 2 +- .../date-picker/overview/package.json | 2 +- .../date-picker/styling/package.json | 2 +- .../custom-ranges/package.json | 2 +- .../date-range-picker/form/package.json | 2 +- .../date-range-picker/overview/package.json | 2 +- .../date-range-picker/slots/package.json | 2 +- .../date-range-picker/styling/package.json | 2 +- 912 files changed, 1990 insertions(+), 1990 deletions(-) diff --git a/browser/package-lock.json b/browser/package-lock.json index 0c459ada18..e3b6b174f1 100644 --- a/browser/package-lock.json +++ b/browser/package-lock.json @@ -18,20 +18,20 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "^0.0.1", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-excel": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-excel": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", @@ -8418,68 +8418,68 @@ } }, "node_modules/igniteui-react-charts": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-charts/-/igniteui-react-charts-19.3.1.tgz", - "integrity": "sha512-sW4MtSHfZ/nD9kbHNzyFkiuHZnQ+VFykaXZaulwiJGC10oAjZMhQJQEuIYlNdasThI7fVEcXcC8HaNog5UbnCQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-charts/-/igniteui-react-charts-19.3.2.tgz", + "integrity": "sha512-gZaj1LZ/OoFwBAovwBX5cUhLfipl4FdI8d6zsEQCm1s0YddvFProGBgV0I0pqcKTHAGW7iJmNPq1ERvcQLwtCw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-core": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-core/-/igniteui-react-core-19.3.1.tgz", - "integrity": "sha512-YaNMlUCvXav5qrsLm6mBN2pYOXZaFA4YBpGdAVni96Zvg/NFLWF1qYQ6qbkP2A4nLnWC5yLcBCmzQrre5c/B5w==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-core/-/igniteui-react-core-19.3.2.tgz", + "integrity": "sha512-4pXVO2qa/ik4HfyziJQCsIpJogkT+OEWs9JHLvfnyEX2gthHy48DvhfdfOIDDKM3NJUBZKhVFy1q843jsr1Big==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" } }, "node_modules/igniteui-react-dashboards": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-dashboards/-/igniteui-react-dashboards-19.3.1.tgz", - "integrity": "sha512-2GkGJrzZz4WqU87ue7f1uaxz1t4SOug8mysx2hZLQcK3j3hbZ1SxA2y6AbvqJrvAv5zcrkJVhROgljXhM8tqrQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-dashboards/-/igniteui-react-dashboards-19.3.2.tgz", + "integrity": "sha512-C6PIBTRzDtWj9gnEvhsjYCd9R8vNHgaLMQVJQnSuNeQzu8MkcVatHXJI68k1gY8+Yk9cxIoUthZc9jCkFwE3fw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2" } }, "node_modules/igniteui-react-data-grids": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-data-grids/-/igniteui-react-data-grids-19.3.1.tgz", - "integrity": "sha512-+7IEj5aDHlA8CX66OpZvIsxuArPVFYc5ORCTLDOfEXzZr9ctkKDifAXVlkdUL/EYRCyKngvtwLMPZxlMmCKHXA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-data-grids/-/igniteui-react-data-grids-19.3.2.tgz", + "integrity": "sha512-u6mOdWL1er1gEWAodrq/8iFs+ya01b2b3YRNXs5dCSk+SfuDxTVx83bktdr7gs8Z50IgdzgesGLr/JE24Pzwaw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2" } }, "node_modules/igniteui-react-datasources": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-datasources/-/igniteui-react-datasources-19.3.1.tgz", - "integrity": "sha512-O8D0MXCoyVk54v8WtuTVj04huMQET0dRWNAIl0vUCOG67VpP01HC8gKu+ibEa87eUZO5GYXWZX/xinKWVtXNPw==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-datasources/-/igniteui-react-datasources-19.3.2.tgz", + "integrity": "sha512-XL4I/HT5NSu/Ru6klo6StRHikbJ4bbkkyxnTQLLc8rM1KjRiyby6bNhWKAtT4ubVdzJomrw4JoC0igA+8eeXaQ==", "license": "MIT", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-dockmanager": { @@ -8494,9 +8494,9 @@ } }, "node_modules/igniteui-react-excel": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-excel/-/igniteui-react-excel-19.3.1.tgz", - "integrity": "sha512-15j8YsJRc0yWUavv6uvLe8P9ik8EM16RotSnlwWk1RyBhGP+w2px3EOpsGB94BNAaZF//hUPGSX+tanEfEDMhw==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-excel/-/igniteui-react-excel-19.3.2.tgz", + "integrity": "sha512-7rp4ortnp7tFQSTINsOrqHN1J8UvznyAU7t6AM05o08BRDXfgfiWB40HFrg/aFna/SbSR8W//a7V9+i9iyBDnA==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "jszip": "^3.1.5", @@ -8504,19 +8504,19 @@ "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-gauges": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-gauges/-/igniteui-react-gauges-19.3.1.tgz", - "integrity": "sha512-5VFXAvlOA9h5zJ1LNk4OjvBbrMbYAzwYRFehz+vap4E69MfLKD5p9/Gsch2eCFu5qd6Lz7fDTuxUs/biH6mlOQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-gauges/-/igniteui-react-gauges-19.3.2.tgz", + "integrity": "sha512-07Jh7M2InRKYROl9AxOcE655clpG593AsWhAFqZgdYG6glEqklGPLMSp3nCzIsa4uik/Wft9HWRpa9DFojKXwQ==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-grids": { @@ -8531,69 +8531,69 @@ } }, "node_modules/igniteui-react-inputs": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-inputs/-/igniteui-react-inputs-19.3.1.tgz", - "integrity": "sha512-h3goQE93UdXzZO7+ctz07gjnCjclUQqqfYRapZ4KAxb333i6LrdEa8NerZGx5QWJoGW9Biz+Fhh9+2emHKb7Fg==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-inputs/-/igniteui-react-inputs-19.3.2.tgz", + "integrity": "sha512-jEAY/BDzehiZ7ouZjyLvvekuUY9xj6g/JNCG02bLL71WfFkBItXv8kXbPwUX04cAyjrOfK8QY/v4tdCiguAZLg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1" + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-layouts": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-layouts/-/igniteui-react-layouts-19.3.1.tgz", - "integrity": "sha512-j0hq6O38Xm9NegqlZ2JTgW+cmsLqfmW2tg4xASNWrTh9erfEdkNLILl83Bdg0XQjk9b1jnPVSrU2HbRDh40AsQ==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-layouts/-/igniteui-react-layouts-19.3.2.tgz", + "integrity": "sha512-O4mmN2tGNUvQ9aLuXs8vYVenWDbbPBzNq+ccRQgWRvZr0ZNsYJaK7fhChgZK982BjLwk5EVjo6mNYeEiQbDQow==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2" } }, "node_modules/igniteui-react-maps": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-maps/-/igniteui-react-maps-19.3.1.tgz", - "integrity": "sha512-AIXYlCdweR162IS2+HflZ5dNhpxN/f2vTBZVTJawJ43KWVV+DJSdROgT0Nz9kA9hdnEFvbQvF7nAvEA4vKH+nA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-maps/-/igniteui-react-maps-19.3.2.tgz", + "integrity": "sha512-uFUtf6bWH46nMBkf81nemvnHARorhPOgYWNKOJOCqTEOL4BFS3aBPfMtOe8fz+14vs15HD4Cj6PKIwSdcPlC4g==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2" } }, "node_modules/igniteui-react-spreadsheet": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet/-/igniteui-react-spreadsheet-19.3.1.tgz", - "integrity": "sha512-OFGNC3RvMv4JOOWjZ3/4TvhEEFM6vRfQN4OHfeiUhTndKkDl/sSrH1ncylTpXbYb0xLdBO4mqpqjBdLod6D6NA==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet/-/igniteui-react-spreadsheet-19.3.2.tgz", + "integrity": "sha512-ptWLY7dRXFCmcHfAV5WRjpNapFiK8e0EXHJLeQ9B39d8w0HN4mDk4HQtAJso06eHkVrH4pCEz/NbNNp6g5RPqg==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1" + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2" } }, "node_modules/igniteui-react-spreadsheet-chart-adapter": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet-chart-adapter/-/igniteui-react-spreadsheet-chart-adapter-19.3.1.tgz", - "integrity": "sha512-dsZlIqkEbWGg09i+dniKDjmhrEjY8axWeK4BBoJpyLaSF4AgJlN3jcM6e5XA6hLxD7DWSbv7avgt5Ns/dumS7g==", + "version": "19.3.2", + "resolved": "https://registry.npmjs.org/igniteui-react-spreadsheet-chart-adapter/-/igniteui-react-spreadsheet-chart-adapter-19.3.2.tgz", + "integrity": "sha512-bnQUyb94hIrQoSP1YBrQIGEomQbqHde4Qr43AyhZoKwN+pcHTOK2tNuUk1+640TAIjai0YSFazArxp8EyzGkVw==", "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", "dependencies": { "tslib": "^2.3.1" }, "peerDependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1" + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2" } }, "node_modules/igniteui-theming": { diff --git a/browser/package.json b/browser/package.json index 0171ebd869..5c2c33f197 100644 --- a/browser/package.json +++ b/browser/package.json @@ -26,21 +26,21 @@ "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "^0.0.1", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-theming": "^24.0.2", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-excel": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-excel": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", + "igniteui-theming": "^24.0.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "marked": "^16.4.1", diff --git a/browser/public/meta.json b/browser/public/meta.json index 0f3e9648e2..53f58987cb 100644 --- a/browser/public/meta.json +++ b/browser/public/meta.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-12-09 11:38:38","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2026-02-02 17:54:15","note":"this file is auto-generated"} \ No newline at end of file diff --git a/browser/src/navigation/SamplesBrowser.json b/browser/src/navigation/SamplesBrowser.json index 0f3e9648e2..53f58987cb 100644 --- a/browser/src/navigation/SamplesBrowser.json +++ b/browser/src/navigation/SamplesBrowser.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-12-09 11:38:38","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2026-02-02 17:54:15","note":"this file is auto-generated"} \ No newline at end of file diff --git a/browser/tasks/gulp-samples.js b/browser/tasks/gulp-samples.js index b7d7d93068..0ee3e9ec49 100644 --- a/browser/tasks/gulp-samples.js +++ b/browser/tasks/gulp-samples.js @@ -844,19 +844,19 @@ function updateIG(cb) { // { name: "igniteui-react-charts", version: "16.16.2" }, // npm let packageUpgrades = [ // these IG packages are often updated: - { version: "19.3.1", name: "igniteui-react-core" }, - { version: "19.3.1", name: "igniteui-react-charts" }, - { version: "19.3.1", name: "igniteui-react-excel" }, - { version: "19.3.1", name: "igniteui-react-gauges" }, - { version: "19.3.1", name: "igniteui-react-data-grids" }, + { version: "19.3.2", name: "igniteui-react-core" }, + { version: "19.3.2", name: "igniteui-react-charts" }, + { version: "19.3.2", name: "igniteui-react-excel" }, + { version: "19.3.2", name: "igniteui-react-gauges" }, + { version: "19.3.2", name: "igniteui-react-data-grids" }, { version: "^19.5.0-beta.0", name: "igniteui-react-grids" }, - { version: "19.3.1", name: "igniteui-react-inputs" }, - { version: "19.3.1", name: "igniteui-react-layouts" }, - { version: "19.3.1", name: "igniteui-react-maps" }, - { version: "19.3.1", name: "igniteui-react-spreadsheet-chart-adapter" }, - { version: "19.3.1", name: "igniteui-react-spreadsheet" }, - { version: "19.3.1", name: "igniteui-react-datasources" }, - { version: "19.3.1", name: "igniteui-react-dashboards" }, + { version: "19.3.2", name: "igniteui-react-inputs" }, + { version: "19.3.2", name: "igniteui-react-layouts" }, + { version: "19.3.2", name: "igniteui-react-maps" }, + { version: "19.3.2", name: "igniteui-react-spreadsheet-chart-adapter" }, + { version: "19.3.2", name: "igniteui-react-spreadsheet" }, + { version: "19.3.2", name: "igniteui-react-datasources" }, + { version: "19.3.2", name: "igniteui-react-dashboards" }, { version: "^19.4.0", name: "igniteui-react" }, // these IG packages are sometimes updated: { version: "^6.3.0", name: "igniteui-webcomponents" }, diff --git a/samples/charts/category-chart/annotations-all/package.json b/samples/charts/category-chart/annotations-all/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-all/package.json +++ b/samples/charts/category-chart/annotations-all/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-callouts/package.json b/samples/charts/category-chart/annotations-callouts/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-callouts/package.json +++ b/samples/charts/category-chart/annotations-callouts/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-crosshairs/package.json b/samples/charts/category-chart/annotations-crosshairs/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-crosshairs/package.json +++ b/samples/charts/category-chart/annotations-crosshairs/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-custom/package.json b/samples/charts/category-chart/annotations-custom/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-custom/package.json +++ b/samples/charts/category-chart/annotations-custom/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-final-value/package.json b/samples/charts/category-chart/annotations-final-value/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-final-value/package.json +++ b/samples/charts/category-chart/annotations-final-value/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations-highlighting/package.json b/samples/charts/category-chart/annotations-highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/annotations-highlighting/package.json +++ b/samples/charts/category-chart/annotations-highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/annotations/package.json b/samples/charts/category-chart/annotations/package.json index 3dd14e9e2e..7f9d30fdb0 100644 --- a/samples/charts/category-chart/annotations/package.json +++ b/samples/charts/category-chart/annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/area-chart-multiple-sources/package.json b/samples/charts/category-chart/area-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/area-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-single-source/package.json b/samples/charts/category-chart/area-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-single-source/package.json +++ b/samples/charts/category-chart/area-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/area-chart-styling/package.json b/samples/charts/category-chart/area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/area-chart-styling/package.json +++ b/samples/charts/category-chart/area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gap/package.json b/samples/charts/category-chart/axis-gap/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-gap/package.json +++ b/samples/charts/category-chart/axis-gap/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-gridlines/package.json b/samples/charts/category-chart/axis-gridlines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-gridlines/package.json +++ b/samples/charts/category-chart/axis-gridlines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-inverted/package.json b/samples/charts/category-chart/axis-inverted/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-inverted/package.json +++ b/samples/charts/category-chart/axis-inverted/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-labels/package.json b/samples/charts/category-chart/axis-labels/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-labels/package.json +++ b/samples/charts/category-chart/axis-labels/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-locations/package.json b/samples/charts/category-chart/axis-locations/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-locations/package.json +++ b/samples/charts/category-chart/axis-locations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-options/package.json b/samples/charts/category-chart/axis-options/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/axis-options/package.json +++ b/samples/charts/category-chart/axis-options/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-overlap/package.json b/samples/charts/category-chart/axis-overlap/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-overlap/package.json +++ b/samples/charts/category-chart/axis-overlap/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-range/package.json b/samples/charts/category-chart/axis-range/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-range/package.json +++ b/samples/charts/category-chart/axis-range/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-tickmarks/package.json b/samples/charts/category-chart/axis-tickmarks/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/axis-tickmarks/package.json +++ b/samples/charts/category-chart/axis-tickmarks/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/axis-titles/package.json b/samples/charts/category-chart/axis-titles/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/axis-titles/package.json +++ b/samples/charts/category-chart/axis-titles/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/chart-highlight-filter/package.json b/samples/charts/category-chart/chart-highlight-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/chart-highlight-filter/package.json +++ b/samples/charts/category-chart/chart-highlight-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-multiple-sources/package.json b/samples/charts/category-chart/column-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/column-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-single-source/package.json b/samples/charts/category-chart/column-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-single-source/package.json +++ b/samples/charts/category-chart/column-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-styling/package.json b/samples/charts/category-chart/column-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/column-chart-styling/package.json +++ b/samples/charts/category-chart/column-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/column-chart-with-highlighting/package.json b/samples/charts/category-chart/column-chart-with-highlighting/package.json index 8a3e6e7286..86f8397210 100644 --- a/samples/charts/category-chart/column-chart-with-highlighting/package.json +++ b/samples/charts/category-chart/column-chart-with-highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/column-chart-with-tooltips/package.json b/samples/charts/category-chart/column-chart-with-tooltips/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips/package.json +++ b/samples/charts/category-chart/column-chart-with-tooltips/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/custom-selection/package.json b/samples/charts/category-chart/custom-selection/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/custom-selection/package.json +++ b/samples/charts/category-chart/custom-selection/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-aggregations/package.json b/samples/charts/category-chart/data-aggregations/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-aggregations/package.json +++ b/samples/charts/category-chart/data-aggregations/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-filter/package.json b/samples/charts/category-chart/data-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-filter/package.json +++ b/samples/charts/category-chart/data-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend-formatting-decimals/package.json b/samples/charts/category-chart/data-legend-formatting-decimals/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-legend/package.json b/samples/charts/category-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-legend/package.json +++ b/samples/charts/category-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip-positioning/package.json b/samples/charts/category-chart/data-tooltip-positioning/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/data-tooltip-positioning/package.json +++ b/samples/charts/category-chart/data-tooltip-positioning/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/data-tooltip/package.json b/samples/charts/category-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/data-tooltip/package.json +++ b/samples/charts/category-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/format-specifiers/package.json b/samples/charts/category-chart/format-specifiers/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/format-specifiers/package.json +++ b/samples/charts/category-chart/format-specifiers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/high-frequency/package.json b/samples/charts/category-chart/high-frequency/package.json index ac4bd70424..80969fcc0e 100644 --- a/samples/charts/category-chart/high-frequency/package.json +++ b/samples/charts/category-chart/high-frequency/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/high-volume/package.json b/samples/charts/category-chart/high-volume/package.json index db979cf88c..261b2d6b22 100644 --- a/samples/charts/category-chart/high-volume/package.json +++ b/samples/charts/category-chart/high-volume/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/highlighting-behavior/package.json b/samples/charts/category-chart/highlighting-behavior/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/highlighting-behavior/package.json +++ b/samples/charts/category-chart/highlighting-behavior/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting-mode/package.json b/samples/charts/category-chart/highlighting-mode/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/highlighting-mode/package.json +++ b/samples/charts/category-chart/highlighting-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/highlighting/package.json b/samples/charts/category-chart/highlighting/package.json index 8a3e6e7286..86f8397210 100644 --- a/samples/charts/category-chart/highlighting/package.json +++ b/samples/charts/category-chart/highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/legend-highlighting/package.json b/samples/charts/category-chart/legend-highlighting/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/legend-highlighting/package.json +++ b/samples/charts/category-chart/legend-highlighting/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-multiple-sources/package.json b/samples/charts/category-chart/line-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/line-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-single-source/package.json b/samples/charts/category-chart/line-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-single-source/package.json +++ b/samples/charts/category-chart/line-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-styling/package.json b/samples/charts/category-chart/line-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/line-chart-styling/package.json +++ b/samples/charts/category-chart/line-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/line-chart-with-animations/package.json b/samples/charts/category-chart/line-chart-with-animations/package.json index 0fefe4949d..d183bf0768 100644 --- a/samples/charts/category-chart/line-chart-with-animations/package.json +++ b/samples/charts/category-chart/line-chart-with-animations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/line-chart-with-annotations/package.json b/samples/charts/category-chart/line-chart-with-annotations/package.json index 0fefe4949d..d183bf0768 100644 --- a/samples/charts/category-chart/line-chart-with-annotations/package.json +++ b/samples/charts/category-chart/line-chart-with-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/marker-options/package.json b/samples/charts/category-chart/marker-options/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/marker-options/package.json +++ b/samples/charts/category-chart/marker-options/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/marker-templates/package.json b/samples/charts/category-chart/marker-templates/package.json index a438c2c97e..ea9766553b 100644 --- a/samples/charts/category-chart/marker-templates/package.json +++ b/samples/charts/category-chart/marker-templates/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/overview/package.json b/samples/charts/category-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/overview/package.json +++ b/samples/charts/category-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-multiple-sources/package.json b/samples/charts/category-chart/point-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources/package.json +++ b/samples/charts/category-chart/point-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-single-source/package.json b/samples/charts/category-chart/point-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-single-source/package.json +++ b/samples/charts/category-chart/point-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/point-chart-styling/package.json b/samples/charts/category-chart/point-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/point-chart-styling/package.json +++ b/samples/charts/category-chart/point-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-matcher/package.json b/samples/charts/category-chart/selection-matcher/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/selection-matcher/package.json +++ b/samples/charts/category-chart/selection-matcher/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-modes/package.json b/samples/charts/category-chart/selection-modes/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/selection-modes/package.json +++ b/samples/charts/category-chart/selection-modes/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/selection-multiple-modes/package.json b/samples/charts/category-chart/selection-multiple-modes/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/selection-multiple-modes/package.json +++ b/samples/charts/category-chart/selection-multiple-modes/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-multiple-sources/package.json b/samples/charts/category-chart/spline-area-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-area-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-single-source/package.json b/samples/charts/category-chart/spline-area-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-single-source/package.json +++ b/samples/charts/category-chart/spline-area-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-area-styling/package.json b/samples/charts/category-chart/spline-area-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-area-styling/package.json +++ b/samples/charts/category-chart/spline-area-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-multiple-sources/package.json b/samples/charts/category-chart/spline-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-multiple-sources/package.json +++ b/samples/charts/category-chart/spline-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-single-source/package.json b/samples/charts/category-chart/spline-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-single-source/package.json +++ b/samples/charts/category-chart/spline-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/spline-styling/package.json b/samples/charts/category-chart/spline-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/spline-styling/package.json +++ b/samples/charts/category-chart/spline-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/stack-columns/package.json b/samples/charts/category-chart/stack-columns/package.json index ace768131f..87c771f323 100644 --- a/samples/charts/category-chart/stack-columns/package.json +++ b/samples/charts/category-chart/stack-columns/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/step-area-multiple-sources/package.json b/samples/charts/category-chart/step-area-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-multiple-sources/package.json +++ b/samples/charts/category-chart/step-area-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-single-source/package.json b/samples/charts/category-chart/step-area-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-single-source/package.json +++ b/samples/charts/category-chart/step-area-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-area-styling/package.json b/samples/charts/category-chart/step-area-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-area-styling/package.json +++ b/samples/charts/category-chart/step-area-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-multiple-sources/package.json b/samples/charts/category-chart/step-line-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-multiple-sources/package.json +++ b/samples/charts/category-chart/step-line-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-single-source/package.json b/samples/charts/category-chart/step-line-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-single-source/package.json +++ b/samples/charts/category-chart/step-line-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/step-line-styling/package.json b/samples/charts/category-chart/step-line-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/category-chart/step-line-styling/package.json +++ b/samples/charts/category-chart/step-line-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/category-chart/tooltip-template/package.json b/samples/charts/category-chart/tooltip-template/package.json index 9a5ce1155d..3318a4e6e3 100644 --- a/samples/charts/category-chart/tooltip-template/package.json +++ b/samples/charts/category-chart/tooltip-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/tooltip-types/package.json b/samples/charts/category-chart/tooltip-types/package.json index 6f5f12d1c1..9b6ab1340a 100644 --- a/samples/charts/category-chart/tooltip-types/package.json +++ b/samples/charts/category-chart/tooltip-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/trendline/package.json b/samples/charts/category-chart/trendline/package.json index 0d33b324ad..ef4ebd58c7 100644 --- a/samples/charts/category-chart/trendline/package.json +++ b/samples/charts/category-chart/trendline/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/category-chart/value-lines/package.json b/samples/charts/category-chart/value-lines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/category-chart/value-lines/package.json +++ b/samples/charts/category-chart/value-lines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/chart-dashboard/package.json b/samples/charts/dashboard-tile/chart-dashboard/package.json index 7a58ec3f8a..2a8b2422d4 100644 --- a/samples/charts/dashboard-tile/chart-dashboard/package.json +++ b/samples/charts/dashboard-tile/chart-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/financial-dashboard/package.json b/samples/charts/dashboard-tile/financial-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/financial-dashboard/package.json +++ b/samples/charts/dashboard-tile/financial-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/gauge-dashboard/package.json b/samples/charts/dashboard-tile/gauge-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/gauge-dashboard/package.json +++ b/samples/charts/dashboard-tile/gauge-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/local-data-source-dashboard/package.json +++ b/samples/charts/dashboard-tile/local-data-source-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/map-dashboard/package.json b/samples/charts/dashboard-tile/map-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/map-dashboard/package.json +++ b/samples/charts/dashboard-tile/map-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/dashboard-tile/pie-dashboard/package.json b/samples/charts/dashboard-tile/pie-dashboard/package.json index 3219191ab4..a66198854b 100644 --- a/samples/charts/dashboard-tile/pie-dashboard/package.json +++ b/samples/charts/dashboard-tile/pie-dashboard/package.json @@ -15,15 +15,15 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-dashboards": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-dashboards": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", + "igniteui-react-maps": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/annotations-custom/package.json b/samples/charts/data-chart/annotations-custom/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/annotations-custom/package.json +++ b/samples/charts/data-chart/annotations-custom/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations-corner-radius/package.json b/samples/charts/data-chart/axis-annotations-corner-radius/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/axis-annotations-corner-radius/package.json +++ b/samples/charts/data-chart/axis-annotations-corner-radius/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-annotations/package.json b/samples/charts/data-chart/axis-annotations/package.json index ace634e52e..fd40c14030 100644 --- a/samples/charts/data-chart/axis-annotations/package.json +++ b/samples/charts/data-chart/axis-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-crossing/package.json b/samples/charts/data-chart/axis-crossing/package.json index 7fb34136bf..c176edca3c 100644 --- a/samples/charts/data-chart/axis-crossing/package.json +++ b/samples/charts/data-chart/axis-crossing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-label-rotation/package.json b/samples/charts/data-chart/axis-label-rotation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/axis-label-rotation/package.json +++ b/samples/charts/data-chart/axis-label-rotation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-locations/package.json b/samples/charts/data-chart/axis-locations/package.json index 03e1eff287..89cbd099f6 100644 --- a/samples/charts/data-chart/axis-locations/package.json +++ b/samples/charts/data-chart/axis-locations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-min-max-gap/package.json b/samples/charts/data-chart/axis-min-max-gap/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/axis-min-max-gap/package.json +++ b/samples/charts/data-chart/axis-min-max-gap/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/axis-settings/package.json b/samples/charts/data-chart/axis-settings/package.json index fd24e336fe..548fb3fe18 100644 --- a/samples/charts/data-chart/axis-settings/package.json +++ b/samples/charts/data-chart/axis-settings/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-sharing/package.json b/samples/charts/data-chart/axis-sharing/package.json index 7fb34136bf..c176edca3c 100644 --- a/samples/charts/data-chart/axis-sharing/package.json +++ b/samples/charts/data-chart/axis-sharing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/axis-types/package.json b/samples/charts/data-chart/axis-types/package.json index fe450f1d8b..2d8b3e839e 100644 --- a/samples/charts/data-chart/axis-types/package.json +++ b/samples/charts/data-chart/axis-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/bar-chart-multiple-sources/package.json b/samples/charts/data-chart/bar-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-overlapping/package.json b/samples/charts/data-chart/bar-chart-overlapping/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-overlapping/package.json +++ b/samples/charts/data-chart/bar-chart-overlapping/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-single-source/package.json b/samples/charts/data-chart/bar-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-single-source/package.json +++ b/samples/charts/data-chart/bar-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/bar-chart-styling/package.json b/samples/charts/data-chart/bar-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/bar-chart-styling/package.json +++ b/samples/charts/data-chart/bar-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/callout-layer-styling/package.json b/samples/charts/data-chart/callout-layer-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/callout-layer-styling/package.json +++ b/samples/charts/data-chart/callout-layer-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-datasource/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-datasource/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json +++ b/samples/charts/data-chart/chart-highlight-filter-multiple-series/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-highlight-filter/package.json b/samples/charts/data-chart/chart-highlight-filter/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/chart-highlight-filter/package.json +++ b/samples/charts/data-chart/chart-highlight-filter/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/chart-navigation/package.json b/samples/charts/data-chart/chart-navigation/package.json index b5b76230a4..c2d699e0da 100644 --- a/samples/charts/data-chart/chart-navigation/package.json +++ b/samples/charts/data-chart/chart-navigation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-overview/package.json b/samples/charts/data-chart/chart-overview/package.json index 512d9c1e81..9ed37854b2 100644 --- a/samples/charts/data-chart/chart-overview/package.json +++ b/samples/charts/data-chart/chart-overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-performance/package.json b/samples/charts/data-chart/chart-performance/package.json index 332c9a2b46..9d9b154e49 100644 --- a/samples/charts/data-chart/chart-performance/package.json +++ b/samples/charts/data-chart/chart-performance/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-synchronization/package.json b/samples/charts/data-chart/chart-synchronization/package.json index 40d365e29f..9248df6e7c 100644 --- a/samples/charts/data-chart/chart-synchronization/package.json +++ b/samples/charts/data-chart/chart-synchronization/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/chart-titles/package.json b/samples/charts/data-chart/chart-titles/package.json index 1933266c38..98217a7336 100644 --- a/samples/charts/data-chart/chart-titles/package.json +++ b/samples/charts/data-chart/chart-titles/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/composite-chart/package.json b/samples/charts/data-chart/composite-chart/package.json index 512d9c1e81..9ed37854b2 100644 --- a/samples/charts/data-chart/composite-chart/package.json +++ b/samples/charts/data-chart/composite-chart/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/crosshair-layer-styling/package.json b/samples/charts/data-chart/crosshair-layer-styling/package.json index 64f348cc55..9e050faacc 100644 --- a/samples/charts/data-chart/crosshair-layer-styling/package.json +++ b/samples/charts/data-chart/crosshair-layer-styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/custom-drawing-annotations/package.json b/samples/charts/data-chart/custom-drawing-annotations/package.json index 7c6fa46b02..5f9c027518 100644 --- a/samples/charts/data-chart/custom-drawing-annotations/package.json +++ b/samples/charts/data-chart/custom-drawing-annotations/package.json @@ -13,10 +13,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/custom-editing-data/package.json b/samples/charts/data-chart/custom-editing-data/package.json index 0572a4b6bd..e748d8e71b 100644 --- a/samples/charts/data-chart/custom-editing-data/package.json +++ b/samples/charts/data-chart/custom-editing-data/package.json @@ -13,8 +13,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/dash-array-axes/package.json b/samples/charts/data-chart/dash-array-axes/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-axes/package.json +++ b/samples/charts/data-chart/dash-array-axes/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-series/package.json b/samples/charts/data-chart/dash-array-series/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-series/package.json +++ b/samples/charts/data-chart/dash-array-series/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-tickmarks/package.json b/samples/charts/data-chart/dash-array-tickmarks/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-tickmarks/package.json +++ b/samples/charts/data-chart/dash-array-tickmarks/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/dash-array-trendline/package.json b/samples/charts/data-chart/dash-array-trendline/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/dash-array-trendline/package.json +++ b/samples/charts/data-chart/dash-array-trendline/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-band-layer/package.json b/samples/charts/data-chart/data-annotation-band-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-band-layer/package.json +++ b/samples/charts/data-chart/data-annotation-band-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-line-layer/package.json b/samples/charts/data-chart/data-annotation-line-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-line-layer/package.json +++ b/samples/charts/data-chart/data-annotation-line-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-overlay-text/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json +++ b/samples/charts/data-chart/data-annotation-multiple-with-stocks/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-rect-layer/package.json b/samples/charts/data-chart/data-annotation-rect-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-rect-layer/package.json +++ b/samples/charts/data-chart/data-annotation-rect-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-slice-layer/package.json b/samples/charts/data-chart/data-annotation-slice-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-slice-layer/package.json +++ b/samples/charts/data-chart/data-annotation-slice-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-annotation-strip-layer/package.json b/samples/charts/data-chart/data-annotation-strip-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-annotation-strip-layer/package.json +++ b/samples/charts/data-chart/data-annotation-strip-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-grouping/package.json b/samples/charts/data-chart/data-legend-grouping/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-grouping/package.json +++ b/samples/charts/data-chart/data-legend-grouping/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend-styling/package.json b/samples/charts/data-chart/data-legend-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend-styling/package.json +++ b/samples/charts/data-chart/data-legend-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-legend/package.json b/samples/charts/data-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-legend/package.json +++ b/samples/charts/data-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-grouping/package.json b/samples/charts/data-chart/data-tooltip-grouping/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-grouping/package.json +++ b/samples/charts/data-chart/data-tooltip-grouping/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip-styling/package.json b/samples/charts/data-chart/data-tooltip-styling/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/data-tooltip-styling/package.json +++ b/samples/charts/data-chart/data-tooltip-styling/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/data-tooltip/package.json b/samples/charts/data-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/data-tooltip/package.json +++ b/samples/charts/data-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/final-value-layer-styling/package.json b/samples/charts/data-chart/final-value-layer-styling/package.json index a5b92c630a..bca1320dd9 100644 --- a/samples/charts/data-chart/final-value-layer-styling/package.json +++ b/samples/charts/data-chart/final-value-layer-styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/financial-price-series/package.json b/samples/charts/data-chart/financial-price-series/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/financial-price-series/package.json +++ b/samples/charts/data-chart/financial-price-series/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/format-specifiers/package.json b/samples/charts/data-chart/format-specifiers/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/format-specifiers/package.json +++ b/samples/charts/data-chart/format-specifiers/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-bar-chart/package.json b/samples/charts/data-chart/itemized-bar-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-bar-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-column-chart/package.json b/samples/charts/data-chart/itemized-column-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-column-chart/package.json +++ b/samples/charts/data-chart/itemized-column-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-stacked-bar-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-bar-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/itemized-stacked-column-chart/package.json b/samples/charts/data-chart/itemized-stacked-column-chart/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/itemized-stacked-column-chart/package.json +++ b/samples/charts/data-chart/itemized-stacked-column-chart/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/legends/package.json b/samples/charts/data-chart/legends/package.json index 25ae7e8481..52aa3b3081 100644 --- a/samples/charts/data-chart/legends/package.json +++ b/samples/charts/data-chart/legends/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/polar-area-chart-styling/package.json b/samples/charts/data-chart/polar-area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-area-chart-styling/package.json +++ b/samples/charts/data-chart/polar-area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-area-chart/package.json b/samples/charts/data-chart/polar-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-area-chart/package.json +++ b/samples/charts/data-chart/polar-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-chart-types/package.json b/samples/charts/data-chart/polar-chart-types/package.json index 69b27e6bee..7768fcf9a7 100644 --- a/samples/charts/data-chart/polar-chart-types/package.json +++ b/samples/charts/data-chart/polar-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/polar-line-chart/package.json b/samples/charts/data-chart/polar-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-line-chart/package.json +++ b/samples/charts/data-chart/polar-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-scatter-chart/package.json b/samples/charts/data-chart/polar-scatter-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-scatter-chart/package.json +++ b/samples/charts/data-chart/polar-scatter-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-area-chart/package.json b/samples/charts/data-chart/polar-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-spline-area-chart/package.json +++ b/samples/charts/data-chart/polar-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/polar-spline-chart/package.json b/samples/charts/data-chart/polar-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/polar-spline-chart/package.json +++ b/samples/charts/data-chart/polar-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart-styling/package.json b/samples/charts/data-chart/radial-area-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-area-chart-styling/package.json +++ b/samples/charts/data-chart/radial-area-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-area-chart/package.json b/samples/charts/data-chart/radial-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-area-chart/package.json +++ b/samples/charts/data-chart/radial-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-chart-types/package.json b/samples/charts/data-chart/radial-chart-types/package.json index ed1956999a..5f5a914e9a 100644 --- a/samples/charts/data-chart/radial-chart-types/package.json +++ b/samples/charts/data-chart/radial-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/radial-column-chart-selection/package.json b/samples/charts/data-chart/radial-column-chart-selection/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-column-chart-selection/package.json +++ b/samples/charts/data-chart/radial-column-chart-selection/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-column-chart/package.json b/samples/charts/data-chart/radial-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-column-chart/package.json +++ b/samples/charts/data-chart/radial-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-label-mode/package.json b/samples/charts/data-chart/radial-label-mode/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/radial-label-mode/package.json +++ b/samples/charts/data-chart/radial-label-mode/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-line-chart/package.json b/samples/charts/data-chart/radial-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-line-chart/package.json +++ b/samples/charts/data-chart/radial-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-chart/package.json b/samples/charts/data-chart/radial-pie-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-pie-chart/package.json +++ b/samples/charts/data-chart/radial-pie-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json +++ b/samples/charts/data-chart/radial-pie-proportional-category-angle-axis/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json +++ b/samples/charts/data-chart/radial-proportional-radial-angle-axis/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/range-area-chart/package.json b/samples/charts/data-chart/range-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/range-area-chart/package.json +++ b/samples/charts/data-chart/range-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/range-column-chart/package.json b/samples/charts/data-chart/range-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/range-column-chart/package.json +++ b/samples/charts/data-chart/range-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-fill-scale/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-multiple-sources/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-single-source/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-bubble-chart-styling/package.json +++ b/samples/charts/data-chart/scatter-bubble-chart-styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-chart/package.json b/samples/charts/data-chart/scatter-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-line-chart/package.json +++ b/samples/charts/data-chart/scatter-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-line-threshold/package.json b/samples/charts/data-chart/scatter-line-threshold/package.json index f8d54b477a..bb68d0047e 100644 --- a/samples/charts/data-chart/scatter-line-threshold/package.json +++ b/samples/charts/data-chart/scatter-line-threshold/package.json @@ -14,8 +14,8 @@ "lint": "eslint ./src/**/*.{ts,tsx}" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-point-chart/package.json b/samples/charts/data-chart/scatter-point-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-point-chart/package.json +++ b/samples/charts/data-chart/scatter-point-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/scatter-spline-chart/package.json b/samples/charts/data-chart/scatter-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/scatter-spline-chart/package.json +++ b/samples/charts/data-chart/scatter-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/selection-matcher/package.json b/samples/charts/data-chart/selection-matcher/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/selection-matcher/package.json +++ b/samples/charts/data-chart/selection-matcher/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/series-annotations/package.json b/samples/charts/data-chart/series-annotations/package.json index a0a5df8185..f0cb6cc030 100644 --- a/samples/charts/data-chart/series-annotations/package.json +++ b/samples/charts/data-chart/series-annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-highlighting/package.json b/samples/charts/data-chart/series-highlighting/package.json index c556864e20..53e6051289 100644 --- a/samples/charts/data-chart/series-highlighting/package.json +++ b/samples/charts/data-chart/series-highlighting/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-marker-template/package.json b/samples/charts/data-chart/series-marker-template/package.json index 853c2c8a67..2bb08fc34f 100644 --- a/samples/charts/data-chart/series-marker-template/package.json +++ b/samples/charts/data-chart/series-marker-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-markers/package.json b/samples/charts/data-chart/series-markers/package.json index 55c69cd4bf..5121a0702d 100644 --- a/samples/charts/data-chart/series-markers/package.json +++ b/samples/charts/data-chart/series-markers/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-tooltips/package.json b/samples/charts/data-chart/series-tooltips/package.json index ba46585c32..61207577bd 100644 --- a/samples/charts/data-chart/series-tooltips/package.json +++ b/samples/charts/data-chart/series-tooltips/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-trendlines/package.json b/samples/charts/data-chart/series-trendlines/package.json index bc431630ab..d5e9fc1c6e 100644 --- a/samples/charts/data-chart/series-trendlines/package.json +++ b/samples/charts/data-chart/series-trendlines/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/series-value-overlay/package.json b/samples/charts/data-chart/series-value-overlay/package.json index c97745cd50..d34748fb02 100644 --- a/samples/charts/data-chart/series-value-overlay/package.json +++ b/samples/charts/data-chart/series-value-overlay/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/stacked-100-area-chart/package.json b/samples/charts/data-chart/stacked-100-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-bar-chart/package.json b/samples/charts/data-chart/stacked-100-bar-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-100-bar-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-column-chart/package.json b/samples/charts/data-chart/stacked-100-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-column-chart/package.json +++ b/samples/charts/data-chart/stacked-100-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-line-chart/package.json b/samples/charts/data-chart/stacked-100-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-line-chart/package.json +++ b/samples/charts/data-chart/stacked-100-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-100-spline-chart/package.json b/samples/charts/data-chart/stacked-100-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-100-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-100-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-area-chart/package.json b/samples/charts/data-chart/stacked-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-area-chart/package.json +++ b/samples/charts/data-chart/stacked-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-bar-chart/package.json b/samples/charts/data-chart/stacked-bar-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-bar-chart/package.json +++ b/samples/charts/data-chart/stacked-bar-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-chart-types/package.json b/samples/charts/data-chart/stacked-chart-types/package.json index df3ff32a0b..bc59d3259d 100644 --- a/samples/charts/data-chart/stacked-chart-types/package.json +++ b/samples/charts/data-chart/stacked-chart-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/stacked-column-chart/package.json b/samples/charts/data-chart/stacked-column-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-column-chart/package.json +++ b/samples/charts/data-chart/stacked-column-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-line-chart/package.json b/samples/charts/data-chart/stacked-line-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-line-chart/package.json +++ b/samples/charts/data-chart/stacked-line-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-area-chart/package.json b/samples/charts/data-chart/stacked-spline-area-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-spline-area-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-area-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/stacked-spline-chart/package.json b/samples/charts/data-chart/stacked-spline-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/stacked-spline-chart/package.json +++ b/samples/charts/data-chart/stacked-spline-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/tooltip-template/package.json b/samples/charts/data-chart/tooltip-template/package.json index c71ff5e6f3..7fc37f0f27 100644 --- a/samples/charts/data-chart/tooltip-template/package.json +++ b/samples/charts/data-chart/tooltip-template/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/transition-event/package.json b/samples/charts/data-chart/transition-event/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/transition-event/package.json +++ b/samples/charts/data-chart/transition-event/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/trendline-layer/package.json b/samples/charts/data-chart/trendline-layer/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/trendline-layer/package.json +++ b/samples/charts/data-chart/trendline-layer/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/type-financial-candlestick-series/package.json b/samples/charts/data-chart/type-financial-candlestick-series/package.json index 5678f8482d..a681aae72f 100644 --- a/samples/charts/data-chart/type-financial-candlestick-series/package.json +++ b/samples/charts/data-chart/type-financial-candlestick-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-indicators-column/package.json b/samples/charts/data-chart/type-financial-indicators-column/package.json index cec9e00965..0e5ec9b4b0 100644 --- a/samples/charts/data-chart/type-financial-indicators-column/package.json +++ b/samples/charts/data-chart/type-financial-indicators-column/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-indicators-line/package.json b/samples/charts/data-chart/type-financial-indicators-line/package.json index 18d4170379..410d66a90e 100644 --- a/samples/charts/data-chart/type-financial-indicators-line/package.json +++ b/samples/charts/data-chart/type-financial-indicators-line/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-ohlc-series/package.json b/samples/charts/data-chart/type-financial-ohlc-series/package.json index 5155767a5c..ae7ea5b7a6 100644 --- a/samples/charts/data-chart/type-financial-ohlc-series/package.json +++ b/samples/charts/data-chart/type-financial-ohlc-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-overlays/package.json b/samples/charts/data-chart/type-financial-overlays/package.json index 116544bbbd..94c96accdd 100644 --- a/samples/charts/data-chart/type-financial-overlays/package.json +++ b/samples/charts/data-chart/type-financial-overlays/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-financial-series/package.json b/samples/charts/data-chart/type-financial-series/package.json index 98db9ce8e7..b8801a2181 100644 --- a/samples/charts/data-chart/type-financial-series/package.json +++ b/samples/charts/data-chart/type-financial-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-area-series/package.json b/samples/charts/data-chart/type-range-area-series/package.json index f8f83fe69a..505f71e4e5 100644 --- a/samples/charts/data-chart/type-range-area-series/package.json +++ b/samples/charts/data-chart/type-range-area-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-column-series/package.json b/samples/charts/data-chart/type-range-column-series/package.json index 12071c1878..a68dee1b13 100644 --- a/samples/charts/data-chart/type-range-column-series/package.json +++ b/samples/charts/data-chart/type-range-column-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-range-series/package.json b/samples/charts/data-chart/type-range-series/package.json index 8ca7506e07..27764896a0 100644 --- a/samples/charts/data-chart/type-range-series/package.json +++ b/samples/charts/data-chart/type-range-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-area-series/package.json b/samples/charts/data-chart/type-scatter-area-series/package.json index 5a494b0102..fe9edb4b73 100644 --- a/samples/charts/data-chart/type-scatter-area-series/package.json +++ b/samples/charts/data-chart/type-scatter-area-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-bubble-series/package.json b/samples/charts/data-chart/type-scatter-bubble-series/package.json index a78f44b24d..1e62f690d1 100644 --- a/samples/charts/data-chart/type-scatter-bubble-series/package.json +++ b/samples/charts/data-chart/type-scatter-bubble-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-contour-series/package.json b/samples/charts/data-chart/type-scatter-contour-series/package.json index 5be3d1fba5..1762385cec 100644 --- a/samples/charts/data-chart/type-scatter-contour-series/package.json +++ b/samples/charts/data-chart/type-scatter-contour-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-hd-series/package.json b/samples/charts/data-chart/type-scatter-hd-series/package.json index 4af37764c4..e1f75b1b19 100644 --- a/samples/charts/data-chart/type-scatter-hd-series/package.json +++ b/samples/charts/data-chart/type-scatter-hd-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-polygon-series/package.json b/samples/charts/data-chart/type-scatter-polygon-series/package.json index 0830bc32ed..43599c983f 100644 --- a/samples/charts/data-chart/type-scatter-polygon-series/package.json +++ b/samples/charts/data-chart/type-scatter-polygon-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-polyline-series/package.json b/samples/charts/data-chart/type-scatter-polyline-series/package.json index d68e1e6d96..5b81d6aa7c 100644 --- a/samples/charts/data-chart/type-scatter-polyline-series/package.json +++ b/samples/charts/data-chart/type-scatter-polyline-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-scatter-series/package.json b/samples/charts/data-chart/type-scatter-series/package.json index a961be6613..8bf4bb8a85 100644 --- a/samples/charts/data-chart/type-scatter-series/package.json +++ b/samples/charts/data-chart/type-scatter-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/type-shape-series/package.json b/samples/charts/data-chart/type-shape-series/package.json index 3de40aab1f..d2d4254058 100644 --- a/samples/charts/data-chart/type-shape-series/package.json +++ b/samples/charts/data-chart/type-shape-series/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/data-chart/user-annotation-layer/package.json b/samples/charts/data-chart/user-annotation-layer/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-chart/user-annotation-layer/package.json +++ b/samples/charts/data-chart/user-annotation-layer/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-chart/waterfall-chart/package.json b/samples/charts/data-chart/waterfall-chart/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-chart/waterfall-chart/package.json +++ b/samples/charts/data-chart/waterfall-chart/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation-replay/package.json b/samples/charts/data-pie-chart/animation-replay/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/animation-replay/package.json +++ b/samples/charts/data-pie-chart/animation-replay/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/animation/package.json b/samples/charts/data-pie-chart/animation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/animation/package.json +++ b/samples/charts/data-pie-chart/animation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlight-filter/package.json b/samples/charts/data-pie-chart/highlight-filter/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-pie-chart/highlight-filter/package.json +++ b/samples/charts/data-pie-chart/highlight-filter/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/highlighting/package.json b/samples/charts/data-pie-chart/highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/highlighting/package.json +++ b/samples/charts/data-pie-chart/highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/legend/package.json b/samples/charts/data-pie-chart/legend/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/legend/package.json +++ b/samples/charts/data-pie-chart/legend/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/others/package.json b/samples/charts/data-pie-chart/others/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/others/package.json +++ b/samples/charts/data-pie-chart/others/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/overview/package.json b/samples/charts/data-pie-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/data-pie-chart/overview/package.json +++ b/samples/charts/data-pie-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/data-pie-chart/selection/package.json b/samples/charts/data-pie-chart/selection/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/data-pie-chart/selection/package.json +++ b/samples/charts/data-pie-chart/selection/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/animation/package.json b/samples/charts/doughnut-chart/animation/package.json index 04e503042e..d316c93734 100644 --- a/samples/charts/doughnut-chart/animation/package.json +++ b/samples/charts/doughnut-chart/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/doughnut-chart/explosion/package.json b/samples/charts/doughnut-chart/explosion/package.json index 646b0d64ee..79774f5bab 100644 --- a/samples/charts/doughnut-chart/explosion/package.json +++ b/samples/charts/doughnut-chart/explosion/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/doughnut-chart/legend/package.json b/samples/charts/doughnut-chart/legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/legend/package.json +++ b/samples/charts/doughnut-chart/legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/overview/package.json b/samples/charts/doughnut-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/overview/package.json +++ b/samples/charts/doughnut-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/rings/package.json b/samples/charts/doughnut-chart/rings/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/doughnut-chart/rings/package.json +++ b/samples/charts/doughnut-chart/rings/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/doughnut-chart/selection/package.json b/samples/charts/doughnut-chart/selection/package.json index c777207a67..940e5b893c 100644 --- a/samples/charts/doughnut-chart/selection/package.json +++ b/samples/charts/doughnut-chart/selection/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/annotations/package.json b/samples/charts/financial-chart/annotations/package.json index 2227cfcf57..56e597cb4e 100644 --- a/samples/charts/financial-chart/annotations/package.json +++ b/samples/charts/financial-chart/annotations/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/axis-types/package.json b/samples/charts/financial-chart/axis-types/package.json index 75d1426c32..2cb5681a05 100644 --- a/samples/charts/financial-chart/axis-types/package.json +++ b/samples/charts/financial-chart/axis-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/data-legend-formatting-currency/package.json b/samples/charts/financial-chart/data-legend-formatting-currency/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-legend-formatting-currency/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend-styling-props/package.json b/samples/charts/financial-chart/data-legend-styling-props/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend-styling-props/package.json +++ b/samples/charts/financial-chart/data-legend-styling-props/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-legend/package.json b/samples/charts/financial-chart/data-legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-legend/package.json +++ b/samples/charts/financial-chart/data-legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json +++ b/samples/charts/financial-chart/data-tooltip-formatting-currency/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip-styling-props/package.json b/samples/charts/financial-chart/data-tooltip-styling-props/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip-styling-props/package.json +++ b/samples/charts/financial-chart/data-tooltip-styling-props/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/data-tooltip/package.json b/samples/charts/financial-chart/data-tooltip/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/data-tooltip/package.json +++ b/samples/charts/financial-chart/data-tooltip/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/format-specifiers/package.json b/samples/charts/financial-chart/format-specifiers/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/format-specifiers/package.json +++ b/samples/charts/financial-chart/format-specifiers/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/high-frequency/package.json b/samples/charts/financial-chart/high-frequency/package.json index 3568461b2a..63970a5b2c 100644 --- a/samples/charts/financial-chart/high-frequency/package.json +++ b/samples/charts/financial-chart/high-frequency/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/high-volume/package.json b/samples/charts/financial-chart/high-volume/package.json index 5b71981b04..f9e6af4851 100644 --- a/samples/charts/financial-chart/high-volume/package.json +++ b/samples/charts/financial-chart/high-volume/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/indicator-customization/package.json b/samples/charts/financial-chart/indicator-customization/package.json index 61cc947a91..a307b43ae9 100644 --- a/samples/charts/financial-chart/indicator-customization/package.json +++ b/samples/charts/financial-chart/indicator-customization/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/indicator-types/package.json b/samples/charts/financial-chart/indicator-types/package.json index 66c84d2307..9024591c2b 100644 --- a/samples/charts/financial-chart/indicator-types/package.json +++ b/samples/charts/financial-chart/indicator-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/multiple-data/package.json b/samples/charts/financial-chart/multiple-data/package.json index 00e3b17edf..7f9a97edab 100644 --- a/samples/charts/financial-chart/multiple-data/package.json +++ b/samples/charts/financial-chart/multiple-data/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/overview/package.json b/samples/charts/financial-chart/overview/package.json index 9c845bb9f7..3a525abdb0 100644 --- a/samples/charts/financial-chart/overview/package.json +++ b/samples/charts/financial-chart/overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/panes/package.json b/samples/charts/financial-chart/panes/package.json index c0d34c53bd..c5c97255d1 100644 --- a/samples/charts/financial-chart/panes/package.json +++ b/samples/charts/financial-chart/panes/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/performance/package.json b/samples/charts/financial-chart/performance/package.json index 380bf9c780..3705bc6119 100644 --- a/samples/charts/financial-chart/performance/package.json +++ b/samples/charts/financial-chart/performance/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/scrollbars/package.json b/samples/charts/financial-chart/scrollbars/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/financial-chart/scrollbars/package.json +++ b/samples/charts/financial-chart/scrollbars/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/financial-chart/stock-index-chart/package.json b/samples/charts/financial-chart/stock-index-chart/package.json index da460da17b..36b8832638 100644 --- a/samples/charts/financial-chart/stock-index-chart/package.json +++ b/samples/charts/financial-chart/stock-index-chart/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/styling/package.json b/samples/charts/financial-chart/styling/package.json index 90cb84694c..e3c91dda2a 100644 --- a/samples/charts/financial-chart/styling/package.json +++ b/samples/charts/financial-chart/styling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/titles/package.json b/samples/charts/financial-chart/titles/package.json index 3202d8d1cf..c7bcc5ae82 100644 --- a/samples/charts/financial-chart/titles/package.json +++ b/samples/charts/financial-chart/titles/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/tooltip-types/package.json b/samples/charts/financial-chart/tooltip-types/package.json index 1638376303..d5bf10b6d4 100644 --- a/samples/charts/financial-chart/tooltip-types/package.json +++ b/samples/charts/financial-chart/tooltip-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/trendlines/package.json b/samples/charts/financial-chart/trendlines/package.json index 9c36161038..cb4f568c49 100644 --- a/samples/charts/financial-chart/trendlines/package.json +++ b/samples/charts/financial-chart/trendlines/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/financial-chart/volume-types/package.json b/samples/charts/financial-chart/volume-types/package.json index 985a92268a..8c52c95228 100644 --- a/samples/charts/financial-chart/volume-types/package.json +++ b/samples/charts/financial-chart/volume-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/animation/package.json b/samples/charts/pie-chart/animation/package.json index 4890b8d90b..46d6d763da 100644 --- a/samples/charts/pie-chart/animation/package.json +++ b/samples/charts/pie-chart/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/explosion/package.json b/samples/charts/pie-chart/explosion/package.json index 1a738ddc44..fe968924ae 100644 --- a/samples/charts/pie-chart/explosion/package.json +++ b/samples/charts/pie-chart/explosion/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/legend/package.json b/samples/charts/pie-chart/legend/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/legend/package.json +++ b/samples/charts/pie-chart/legend/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/others/package.json b/samples/charts/pie-chart/others/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/others/package.json +++ b/samples/charts/pie-chart/others/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/overview/package.json b/samples/charts/pie-chart/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/overview/package.json +++ b/samples/charts/pie-chart/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/pie-chart/selection/package.json b/samples/charts/pie-chart/selection/package.json index ee66908f37..5b78d37da4 100644 --- a/samples/charts/pie-chart/selection/package.json +++ b/samples/charts/pie-chart/selection/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/pie-chart/styling/package.json b/samples/charts/pie-chart/styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/pie-chart/styling/package.json +++ b/samples/charts/pie-chart/styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-area/package.json b/samples/charts/sparkline/display-area/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-area/package.json +++ b/samples/charts/sparkline/display-area/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-column/package.json b/samples/charts/sparkline/display-column/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-column/package.json +++ b/samples/charts/sparkline/display-column/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-lines/package.json b/samples/charts/sparkline/display-lines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/display-lines/package.json +++ b/samples/charts/sparkline/display-lines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/display-types/package.json b/samples/charts/sparkline/display-types/package.json index 012493ea1a..fd8f49e279 100644 --- a/samples/charts/sparkline/display-types/package.json +++ b/samples/charts/sparkline/display-types/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/sparkline/display-winloss/package.json b/samples/charts/sparkline/display-winloss/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/sparkline/display-winloss/package.json +++ b/samples/charts/sparkline/display-winloss/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/grid/package.json b/samples/charts/sparkline/grid/package.json index c462a535ab..6f45d7f9fb 100644 --- a/samples/charts/sparkline/grid/package.json +++ b/samples/charts/sparkline/grid/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/sparkline/markers/package.json b/samples/charts/sparkline/markers/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/markers/package.json +++ b/samples/charts/sparkline/markers/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/normal-range/package.json b/samples/charts/sparkline/normal-range/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/normal-range/package.json +++ b/samples/charts/sparkline/normal-range/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/trendlines/package.json b/samples/charts/sparkline/trendlines/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/trendlines/package.json +++ b/samples/charts/sparkline/trendlines/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/sparkline/unknown-values/package.json b/samples/charts/sparkline/unknown-values/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/sparkline/unknown-values/package.json +++ b/samples/charts/sparkline/unknown-values/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-category-chart/package.json b/samples/charts/toolbar/actions-built-in-category-chart/package.json index d475d4b4ad..d2de8c3a10 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-category-chart/package.json @@ -15,11 +15,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/actions-built-in-data-chart/package.json b/samples/charts/toolbar/actions-built-in-data-chart/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/actions-built-in-data-chart/package.json +++ b/samples/charts/toolbar/actions-built-in-data-chart/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/color-editor-support/package.json b/samples/charts/toolbar/color-editor-support/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/color-editor-support/package.json +++ b/samples/charts/toolbar/color-editor-support/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/custom-tool/package.json b/samples/charts/toolbar/custom-tool/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/custom-tool/package.json +++ b/samples/charts/toolbar/custom-tool/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/layout-actions-for-data-chart/package.json b/samples/charts/toolbar/layout-actions-for-data-chart/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/layout-actions-for-data-chart/package.json +++ b/samples/charts/toolbar/layout-actions-for-data-chart/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/layout-in-vertical-orientation/package.json b/samples/charts/toolbar/layout-in-vertical-orientation/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/layout-in-vertical-orientation/package.json +++ b/samples/charts/toolbar/layout-in-vertical-orientation/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/toolbar/theming/package.json b/samples/charts/toolbar/theming/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/toolbar/theming/package.json +++ b/samples/charts/toolbar/theming/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/events/package.json b/samples/charts/tree-map/events/package.json index a1a16b352f..27bc8f44ae 100644 --- a/samples/charts/tree-map/events/package.json +++ b/samples/charts/tree-map/events/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/charts/tree-map/highlighting-percent-based/package.json b/samples/charts/tree-map/highlighting-percent-based/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/highlighting-percent-based/package.json +++ b/samples/charts/tree-map/highlighting-percent-based/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/highlighting/package.json b/samples/charts/tree-map/highlighting/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/tree-map/highlighting/package.json +++ b/samples/charts/tree-map/highlighting/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/layout/package.json b/samples/charts/tree-map/layout/package.json index 1d2f325913..a58f8f996a 100644 --- a/samples/charts/tree-map/layout/package.json +++ b/samples/charts/tree-map/layout/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/overview/package.json b/samples/charts/tree-map/overview/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/overview/package.json +++ b/samples/charts/tree-map/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/tree-map/styling/package.json b/samples/charts/tree-map/styling/package.json index 12fd23e4d2..f4f401e26f 100644 --- a/samples/charts/tree-map/styling/package.json +++ b/samples/charts/tree-map/styling/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/charts/zoomslider/overview/package.json b/samples/charts/zoomslider/overview/package.json index a8f739656d..2d62cab9d9 100644 --- a/samples/charts/zoomslider/overview/package.json +++ b/samples/charts/zoomslider/overview/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/multi-column-combobox/overview/package.json b/samples/editors/multi-column-combobox/overview/package.json index 530c464136..8ce34cf518 100644 --- a/samples/editors/multi-column-combobox/overview/package.json +++ b/samples/editors/multi-column-combobox/overview/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/date-limits/package.json b/samples/editors/x-date-picker/date-limits/package.json index a00129dba8..f89723ebfc 100644 --- a/samples/editors/x-date-picker/date-limits/package.json +++ b/samples/editors/x-date-picker/date-limits/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/editing/package.json b/samples/editors/x-date-picker/editing/package.json index 14e1d85134..db8f62ce77 100644 --- a/samples/editors/x-date-picker/editing/package.json +++ b/samples/editors/x-date-picker/editing/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/format/package.json b/samples/editors/x-date-picker/format/package.json index 14e1d85134..db8f62ce77 100644 --- a/samples/editors/x-date-picker/format/package.json +++ b/samples/editors/x-date-picker/format/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/overview/package.json b/samples/editors/x-date-picker/overview/package.json index 73c70f88e9..80378550d8 100644 --- a/samples/editors/x-date-picker/overview/package.json +++ b/samples/editors/x-date-picker/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/editors/x-date-picker/range/package.json b/samples/editors/x-date-picker/range/package.json index d08e280507..74d4018232 100644 --- a/samples/editors/x-date-picker/range/package.json +++ b/samples/editors/x-date-picker/range/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/operations-on-workbooks/package.json b/samples/excel/excel-library/operations-on-workbooks/package.json index 3b4369fa22..8649918549 100644 --- a/samples/excel/excel-library/operations-on-workbooks/package.json +++ b/samples/excel/excel-library/operations-on-workbooks/package.json @@ -14,11 +14,11 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/operations-on-worksheets/package.json b/samples/excel/excel-library/operations-on-worksheets/package.json index ed0a16b69c..89e1bb7fcd 100644 --- a/samples/excel/excel-library/operations-on-worksheets/package.json +++ b/samples/excel/excel-library/operations-on-worksheets/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/overview/package.json b/samples/excel/excel-library/overview/package.json index 1f9c1ffb8d..f5436626bf 100644 --- a/samples/excel/excel-library/overview/package.json +++ b/samples/excel/excel-library/overview/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-cells/package.json b/samples/excel/excel-library/working-with-cells/package.json index c13d989cb3..859f77be10 100644 --- a/samples/excel/excel-library/working-with-cells/package.json +++ b/samples/excel/excel-library/working-with-cells/package.json @@ -14,8 +14,8 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-charts/package.json b/samples/excel/excel-library/working-with-charts/package.json index e5a1bbf8b0..0d5851d207 100644 --- a/samples/excel/excel-library/working-with-charts/package.json +++ b/samples/excel/excel-library/working-with-charts/package.json @@ -14,12 +14,12 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/excel-library/working-with-sparklines/package.json b/samples/excel/excel-library/working-with-sparklines/package.json index 87022a338b..9ec885cb2d 100644 --- a/samples/excel/excel-library/working-with-sparklines/package.json +++ b/samples/excel/excel-library/working-with-sparklines/package.json @@ -14,12 +14,12 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/activation/package.json b/samples/excel/spreadsheet/activation/package.json index 4ff3fec574..c381a08771 100644 --- a/samples/excel/spreadsheet/activation/package.json +++ b/samples/excel/spreadsheet/activation/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/adapter-chart/package.json b/samples/excel/spreadsheet/adapter-chart/package.json index 91aa8692ef..203e405396 100644 --- a/samples/excel/spreadsheet/adapter-chart/package.json +++ b/samples/excel/spreadsheet/adapter-chart/package.json @@ -14,11 +14,11 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/adapter-combo/package.json b/samples/excel/spreadsheet/adapter-combo/package.json index 12af88a9bd..6ce6dba1ee 100644 --- a/samples/excel/spreadsheet/adapter-combo/package.json +++ b/samples/excel/spreadsheet/adapter-combo/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", - "igniteui-react-spreadsheet-chart-adapter": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", + "igniteui-react-spreadsheet-chart-adapter": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/clipboard/package.json b/samples/excel/spreadsheet/clipboard/package.json index a3f32ab3c1..b5b1447bc7 100644 --- a/samples/excel/spreadsheet/clipboard/package.json +++ b/samples/excel/spreadsheet/clipboard/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/commands/package.json b/samples/excel/spreadsheet/commands/package.json index 5bace9fbb5..18c741c36b 100644 --- a/samples/excel/spreadsheet/commands/package.json +++ b/samples/excel/spreadsheet/commands/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/conditional-formatting/package.json b/samples/excel/spreadsheet/conditional-formatting/package.json index 8464cbe40b..e938306ead 100644 --- a/samples/excel/spreadsheet/conditional-formatting/package.json +++ b/samples/excel/spreadsheet/conditional-formatting/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/config-options/package.json b/samples/excel/spreadsheet/config-options/package.json index 006076b8f2..69b6730ed4 100644 --- a/samples/excel/spreadsheet/config-options/package.json +++ b/samples/excel/spreadsheet/config-options/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/data-validation/package.json b/samples/excel/spreadsheet/data-validation/package.json index 0c6a03c67d..c8c72c0e11 100644 --- a/samples/excel/spreadsheet/data-validation/package.json +++ b/samples/excel/spreadsheet/data-validation/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/filter-dialog/package.json b/samples/excel/spreadsheet/filter-dialog/package.json index 244a9c3284..431374524b 100644 --- a/samples/excel/spreadsheet/filter-dialog/package.json +++ b/samples/excel/spreadsheet/filter-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/format-dialog/package.json b/samples/excel/spreadsheet/format-dialog/package.json index 8b294e548b..d32f62b594 100644 --- a/samples/excel/spreadsheet/format-dialog/package.json +++ b/samples/excel/spreadsheet/format-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/hyperlinks/package.json b/samples/excel/spreadsheet/hyperlinks/package.json index 0967bfebb8..10364940e6 100644 --- a/samples/excel/spreadsheet/hyperlinks/package.json +++ b/samples/excel/spreadsheet/hyperlinks/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/overview/package.json b/samples/excel/spreadsheet/overview/package.json index 8359a45c53..c15d2fa9c5 100644 --- a/samples/excel/spreadsheet/overview/package.json +++ b/samples/excel/spreadsheet/overview/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/excel/spreadsheet/sort-dialog/package.json b/samples/excel/spreadsheet/sort-dialog/package.json index 73a7c3eab2..0e954c1ff5 100644 --- a/samples/excel/spreadsheet/sort-dialog/package.json +++ b/samples/excel/spreadsheet/sort-dialog/package.json @@ -14,9 +14,9 @@ "dependencies": { "@types/file-saver": "^2.0.7", "file-saver": "^1.3.8", - "igniteui-react-core": "19.3.1", - "igniteui-react-excel": "19.3.1", - "igniteui-react-spreadsheet": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-excel": "19.3.2", + "igniteui-react-spreadsheet": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/animation/package.json b/samples/gauges/bullet-graph/animation/package.json index 50c16edf5d..ee7646cea4 100644 --- a/samples/gauges/bullet-graph/animation/package.json +++ b/samples/gauges/bullet-graph/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/background/package.json b/samples/gauges/bullet-graph/background/package.json index bd1cabce04..925e91ff69 100644 --- a/samples/gauges/bullet-graph/background/package.json +++ b/samples/gauges/bullet-graph/background/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/highlight-needle/package.json b/samples/gauges/bullet-graph/highlight-needle/package.json index 5625a1e296..d63772fbc1 100644 --- a/samples/gauges/bullet-graph/highlight-needle/package.json +++ b/samples/gauges/bullet-graph/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/labels/package.json b/samples/gauges/bullet-graph/labels/package.json index 863470b026..84b9ca0d69 100644 --- a/samples/gauges/bullet-graph/labels/package.json +++ b/samples/gauges/bullet-graph/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/measures/package.json b/samples/gauges/bullet-graph/measures/package.json index d1545abf39..efa2d70608 100644 --- a/samples/gauges/bullet-graph/measures/package.json +++ b/samples/gauges/bullet-graph/measures/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/ranges/package.json b/samples/gauges/bullet-graph/ranges/package.json index c731d3acc0..6629b24de8 100644 --- a/samples/gauges/bullet-graph/ranges/package.json +++ b/samples/gauges/bullet-graph/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/scale/package.json b/samples/gauges/bullet-graph/scale/package.json index abb97e2e7b..a570f1b64e 100644 --- a/samples/gauges/bullet-graph/scale/package.json +++ b/samples/gauges/bullet-graph/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/tickmarks/package.json b/samples/gauges/bullet-graph/tickmarks/package.json index d7cfca2a5a..97a5459afc 100644 --- a/samples/gauges/bullet-graph/tickmarks/package.json +++ b/samples/gauges/bullet-graph/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-filled/package.json b/samples/gauges/bullet-graph/type-filled/package.json index 2551a5a165..536fa9cb2b 100644 --- a/samples/gauges/bullet-graph/type-filled/package.json +++ b/samples/gauges/bullet-graph/type-filled/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-horizontal/package.json b/samples/gauges/bullet-graph/type-horizontal/package.json index c1883eaf20..8723c5848e 100644 --- a/samples/gauges/bullet-graph/type-horizontal/package.json +++ b/samples/gauges/bullet-graph/type-horizontal/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-reversed/package.json b/samples/gauges/bullet-graph/type-reversed/package.json index f017b0ec6f..7fef6cbfe4 100644 --- a/samples/gauges/bullet-graph/type-reversed/package.json +++ b/samples/gauges/bullet-graph/type-reversed/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-segmented/package.json b/samples/gauges/bullet-graph/type-segmented/package.json index 02fa92b516..5faea7652b 100644 --- a/samples/gauges/bullet-graph/type-segmented/package.json +++ b/samples/gauges/bullet-graph/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/bullet-graph/type-vertical/package.json b/samples/gauges/bullet-graph/type-vertical/package.json index ed5ead0062..c25c396e95 100644 --- a/samples/gauges/bullet-graph/type-vertical/package.json +++ b/samples/gauges/bullet-graph/type-vertical/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/animation/package.json b/samples/gauges/linear-gauge/animation/package.json index a7149c0560..6644fdb88e 100644 --- a/samples/gauges/linear-gauge/animation/package.json +++ b/samples/gauges/linear-gauge/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/backing/package.json b/samples/gauges/linear-gauge/backing/package.json index 955e4f6117..08cdc8dce6 100644 --- a/samples/gauges/linear-gauge/backing/package.json +++ b/samples/gauges/linear-gauge/backing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/highlight-needle/package.json b/samples/gauges/linear-gauge/highlight-needle/package.json index a3e3d09640..3643de8135 100644 --- a/samples/gauges/linear-gauge/highlight-needle/package.json +++ b/samples/gauges/linear-gauge/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/labels/package.json b/samples/gauges/linear-gauge/labels/package.json index f78b4e1b30..cdf3548cb8 100644 --- a/samples/gauges/linear-gauge/labels/package.json +++ b/samples/gauges/linear-gauge/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/needle/package.json b/samples/gauges/linear-gauge/needle/package.json index fdd8a1bf1a..33cb5cef66 100644 --- a/samples/gauges/linear-gauge/needle/package.json +++ b/samples/gauges/linear-gauge/needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/ranges/package.json b/samples/gauges/linear-gauge/ranges/package.json index b3e1ad6b8d..20203f850f 100644 --- a/samples/gauges/linear-gauge/ranges/package.json +++ b/samples/gauges/linear-gauge/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/scale/package.json b/samples/gauges/linear-gauge/scale/package.json index c139ca3c5d..623388f98b 100644 --- a/samples/gauges/linear-gauge/scale/package.json +++ b/samples/gauges/linear-gauge/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/tickmarks/package.json b/samples/gauges/linear-gauge/tickmarks/package.json index 7fa918de9f..753a4f07e4 100644 --- a/samples/gauges/linear-gauge/tickmarks/package.json +++ b/samples/gauges/linear-gauge/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-curved/package.json b/samples/gauges/linear-gauge/type-curved/package.json index 0cef358b26..9cfa52ece0 100644 --- a/samples/gauges/linear-gauge/type-curved/package.json +++ b/samples/gauges/linear-gauge/type-curved/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-filled/package.json b/samples/gauges/linear-gauge/type-filled/package.json index 82de5f7552..c6653e0363 100644 --- a/samples/gauges/linear-gauge/type-filled/package.json +++ b/samples/gauges/linear-gauge/type-filled/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-horizontal/package.json b/samples/gauges/linear-gauge/type-horizontal/package.json index 25739e124b..380af90c49 100644 --- a/samples/gauges/linear-gauge/type-horizontal/package.json +++ b/samples/gauges/linear-gauge/type-horizontal/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-multi-range/package.json b/samples/gauges/linear-gauge/type-multi-range/package.json index 1ad47d7d90..d391254010 100644 --- a/samples/gauges/linear-gauge/type-multi-range/package.json +++ b/samples/gauges/linear-gauge/type-multi-range/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-multi-scale/package.json b/samples/gauges/linear-gauge/type-multi-scale/package.json index cb601dea11..6c51d6ce9a 100644 --- a/samples/gauges/linear-gauge/type-multi-scale/package.json +++ b/samples/gauges/linear-gauge/type-multi-scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-segmented/package.json b/samples/gauges/linear-gauge/type-segmented/package.json index 7d0843d42f..c1ef1fe3ec 100644 --- a/samples/gauges/linear-gauge/type-segmented/package.json +++ b/samples/gauges/linear-gauge/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/linear-gauge/type-vertical/package.json b/samples/gauges/linear-gauge/type-vertical/package.json index bbd4c24188..d0889bbbd2 100644 --- a/samples/gauges/linear-gauge/type-vertical/package.json +++ b/samples/gauges/linear-gauge/type-vertical/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/animation/package.json b/samples/gauges/radial-gauge/animation/package.json index 2fbcaa6051..2928e25c66 100644 --- a/samples/gauges/radial-gauge/animation/package.json +++ b/samples/gauges/radial-gauge/animation/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/backing/package.json b/samples/gauges/radial-gauge/backing/package.json index 36a8ba54e3..43032b9643 100644 --- a/samples/gauges/radial-gauge/backing/package.json +++ b/samples/gauges/radial-gauge/backing/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/highlight-needle/package.json b/samples/gauges/radial-gauge/highlight-needle/package.json index f273a9264c..76c68ad164 100644 --- a/samples/gauges/radial-gauge/highlight-needle/package.json +++ b/samples/gauges/radial-gauge/highlight-needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/labels/package.json b/samples/gauges/radial-gauge/labels/package.json index 26fd7cfaa2..f06d069b06 100644 --- a/samples/gauges/radial-gauge/labels/package.json +++ b/samples/gauges/radial-gauge/labels/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/needle/package.json b/samples/gauges/radial-gauge/needle/package.json index 64595e923a..1b3e8a374f 100644 --- a/samples/gauges/radial-gauge/needle/package.json +++ b/samples/gauges/radial-gauge/needle/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/optical-scaling/package.json b/samples/gauges/radial-gauge/optical-scaling/package.json index 26fd7cfaa2..f06d069b06 100644 --- a/samples/gauges/radial-gauge/optical-scaling/package.json +++ b/samples/gauges/radial-gauge/optical-scaling/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/ranges/package.json b/samples/gauges/radial-gauge/ranges/package.json index d9dc63153f..199899b674 100644 --- a/samples/gauges/radial-gauge/ranges/package.json +++ b/samples/gauges/radial-gauge/ranges/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/scale/package.json b/samples/gauges/radial-gauge/scale/package.json index d8af2979c8..fa799b9b5b 100644 --- a/samples/gauges/radial-gauge/scale/package.json +++ b/samples/gauges/radial-gauge/scale/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/tickmarks/package.json b/samples/gauges/radial-gauge/tickmarks/package.json index 8768d24bf7..28958794f3 100644 --- a/samples/gauges/radial-gauge/tickmarks/package.json +++ b/samples/gauges/radial-gauge/tickmarks/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-column/package.json b/samples/gauges/radial-gauge/type-column/package.json index 51fa66f113..c41d8a32b4 100644 --- a/samples/gauges/radial-gauge/type-column/package.json +++ b/samples/gauges/radial-gauge/type-column/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-curved/package.json b/samples/gauges/radial-gauge/type-curved/package.json index ddc4e18564..f0419a3a33 100644 --- a/samples/gauges/radial-gauge/type-curved/package.json +++ b/samples/gauges/radial-gauge/type-curved/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-direction/package.json b/samples/gauges/radial-gauge/type-direction/package.json index 7238ccdb05..d4337a1327 100644 --- a/samples/gauges/radial-gauge/type-direction/package.json +++ b/samples/gauges/radial-gauge/type-direction/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-full/package.json b/samples/gauges/radial-gauge/type-full/package.json index c3ae46056d..c65a8fdf85 100644 --- a/samples/gauges/radial-gauge/type-full/package.json +++ b/samples/gauges/radial-gauge/type-full/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-half/package.json b/samples/gauges/radial-gauge/type-half/package.json index e9fbb6e3a9..029c48afc5 100644 --- a/samples/gauges/radial-gauge/type-half/package.json +++ b/samples/gauges/radial-gauge/type-half/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-quatre/package.json b/samples/gauges/radial-gauge/type-quatre/package.json index a4a52e5d8e..2dd8031279 100644 --- a/samples/gauges/radial-gauge/type-quatre/package.json +++ b/samples/gauges/radial-gauge/type-quatre/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-ring/package.json b/samples/gauges/radial-gauge/type-ring/package.json index 5faee91750..8203e04d18 100644 --- a/samples/gauges/radial-gauge/type-ring/package.json +++ b/samples/gauges/radial-gauge/type-ring/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-segmented/package.json b/samples/gauges/radial-gauge/type-segmented/package.json index 8e6f6459ca..f566e9abea 100644 --- a/samples/gauges/radial-gauge/type-segmented/package.json +++ b/samples/gauges/radial-gauge/type-segmented/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/gauges/radial-gauge/type-semi/package.json b/samples/gauges/radial-gauge/type-semi/package.json index 2502535760..b42cd12777 100644 --- a/samples/gauges/radial-gauge/type-semi/package.json +++ b/samples/gauges/radial-gauge/type-semi/package.json @@ -12,8 +12,8 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/data-grid/accessibility/package.json b/samples/grids/data-grid/accessibility/package.json index 1d92fb73cd..a3d8318643 100644 --- a/samples/grids/data-grid/accessibility/package.json +++ b/samples/grids/data-grid/accessibility/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-data-service/package.json b/samples/grids/data-grid/binding-data-service/package.json index b675593e15..7f7ef6bcdf 100644 --- a/samples/grids/data-grid/binding-data-service/package.json +++ b/samples/grids/data-grid/binding-data-service/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-live-data/package.json b/samples/grids/data-grid/binding-live-data/package.json index e9ec1ecbf2..10ffa15f11 100644 --- a/samples/grids/data-grid/binding-live-data/package.json +++ b/samples/grids/data-grid/binding-live-data/package.json @@ -14,11 +14,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-local-data/package.json b/samples/grids/data-grid/binding-local-data/package.json index d87036c172..70d11d7a71 100644 --- a/samples/grids/data-grid/binding-local-data/package.json +++ b/samples/grids/data-grid/binding-local-data/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/binding-remote-data/package.json b/samples/grids/data-grid/binding-remote-data/package.json index 0a30eec1b6..19f72320b4 100644 --- a/samples/grids/data-grid/binding-remote-data/package.json +++ b/samples/grids/data-grid/binding-remote-data/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-datasources": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-datasources": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-activation/package.json b/samples/grids/data-grid/cell-activation/package.json index be9def2561..63ba9cc6a9 100644 --- a/samples/grids/data-grid/cell-activation/package.json +++ b/samples/grids/data-grid/cell-activation/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-editing/package.json b/samples/grids/data-grid/cell-editing/package.json index 3a19bcaa76..93b856f6c5 100644 --- a/samples/grids/data-grid/cell-editing/package.json +++ b/samples/grids/data-grid/cell-editing/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-merging/package.json b/samples/grids/data-grid/cell-merging/package.json index 540bfe5379..aae15bb92d 100644 --- a/samples/grids/data-grid/cell-merging/package.json +++ b/samples/grids/data-grid/cell-merging/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/cell-selection/package.json b/samples/grids/data-grid/cell-selection/package.json index 81ed611d5d..a776208013 100644 --- a/samples/grids/data-grid/cell-selection/package.json +++ b/samples/grids/data-grid/cell-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-animation/package.json b/samples/grids/data-grid/column-animation/package.json index 508c54535b..dc2c110dcc 100644 --- a/samples/grids/data-grid/column-animation/package.json +++ b/samples/grids/data-grid/column-animation/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-chooser-picker/package.json b/samples/grids/data-grid/column-chooser-picker/package.json index 65a88eb56f..7d7cc5c429 100644 --- a/samples/grids/data-grid/column-chooser-picker/package.json +++ b/samples/grids/data-grid/column-chooser-picker/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-chooser-toolbar/package.json b/samples/grids/data-grid/column-chooser-toolbar/package.json index 8e100c2d3d..421522a3af 100644 --- a/samples/grids/data-grid/column-chooser-toolbar/package.json +++ b/samples/grids/data-grid/column-chooser-toolbar/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filter-expressions/package.json b/samples/grids/data-grid/column-filter-expressions/package.json index 285d2ce8ba..8a89a9b179 100644 --- a/samples/grids/data-grid/column-filter-expressions/package.json +++ b/samples/grids/data-grid/column-filter-expressions/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filter-operands/package.json b/samples/grids/data-grid/column-filter-operands/package.json index e74ada5642..4182c06011 100644 --- a/samples/grids/data-grid/column-filter-operands/package.json +++ b/samples/grids/data-grid/column-filter-operands/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-filtering/package.json b/samples/grids/data-grid/column-filtering/package.json index e8c9ea9e10..177e1434a7 100644 --- a/samples/grids/data-grid/column-filtering/package.json +++ b/samples/grids/data-grid/column-filtering/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-moving/package.json b/samples/grids/data-grid/column-moving/package.json index 2ef7e1a811..efffc71d85 100644 --- a/samples/grids/data-grid/column-moving/package.json +++ b/samples/grids/data-grid/column-moving/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-options/package.json b/samples/grids/data-grid/column-options/package.json index 14de5e522a..454b4d5dfa 100644 --- a/samples/grids/data-grid/column-options/package.json +++ b/samples/grids/data-grid/column-options/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-pinning-picker/package.json b/samples/grids/data-grid/column-pinning-picker/package.json index 1a53992059..c12ac31c53 100644 --- a/samples/grids/data-grid/column-pinning-picker/package.json +++ b/samples/grids/data-grid/column-pinning-picker/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-pinning-toolbar/package.json b/samples/grids/data-grid/column-pinning-toolbar/package.json index c6a81df561..a9c3a6fbad 100644 --- a/samples/grids/data-grid/column-pinning-toolbar/package.json +++ b/samples/grids/data-grid/column-pinning-toolbar/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-resizing/package.json b/samples/grids/data-grid/column-resizing/package.json index 907499209a..737331a94e 100644 --- a/samples/grids/data-grid/column-resizing/package.json +++ b/samples/grids/data-grid/column-resizing/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-scrolling/package.json b/samples/grids/data-grid/column-scrolling/package.json index 9f08fc1647..3d0e4d3545 100644 --- a/samples/grids/data-grid/column-scrolling/package.json +++ b/samples/grids/data-grid/column-scrolling/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-sorting/package.json b/samples/grids/data-grid/column-sorting/package.json index 22c705f520..f9b394dbaf 100644 --- a/samples/grids/data-grid/column-sorting/package.json +++ b/samples/grids/data-grid/column-sorting/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-summaries/package.json b/samples/grids/data-grid/column-summaries/package.json index e838f1bfad..caebf8c6fd 100644 --- a/samples/grids/data-grid/column-summaries/package.json +++ b/samples/grids/data-grid/column-summaries/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/column-types/package.json b/samples/grids/data-grid/column-types/package.json index c7aff49b0e..802852b350 100644 --- a/samples/grids/data-grid/column-types/package.json +++ b/samples/grids/data-grid/column-types/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/load-save-layout/package.json b/samples/grids/data-grid/load-save-layout/package.json index 07c1567d24..77695b72a5 100644 --- a/samples/grids/data-grid/load-save-layout/package.json +++ b/samples/grids/data-grid/load-save-layout/package.json @@ -14,11 +14,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/localization/package.json b/samples/grids/data-grid/localization/package.json index 7de995d408..f88ef032c4 100644 --- a/samples/grids/data-grid/localization/package.json +++ b/samples/grids/data-grid/localization/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/overview/package.json b/samples/grids/data-grid/overview/package.json index 295c68a805..639304c200 100644 --- a/samples/grids/data-grid/overview/package.json +++ b/samples/grids/data-grid/overview/package.json @@ -12,11 +12,11 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/pager/package.json b/samples/grids/data-grid/pager/package.json index b58e3b6bf2..9a2f2e3e9f 100644 --- a/samples/grids/data-grid/pager/package.json +++ b/samples/grids/data-grid/pager/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/performance/package.json b/samples/grids/data-grid/performance/package.json index 7d5ca481f9..440a450f9c 100644 --- a/samples/grids/data-grid/performance/package.json +++ b/samples/grids/data-grid/performance/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-group-descriptions/package.json b/samples/grids/data-grid/row-group-descriptions/package.json index 92e76b9774..ad34eaf1a5 100644 --- a/samples/grids/data-grid/row-group-descriptions/package.json +++ b/samples/grids/data-grid/row-group-descriptions/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-grouping/package.json b/samples/grids/data-grid/row-grouping/package.json index 92e76b9774..ad34eaf1a5 100644 --- a/samples/grids/data-grid/row-grouping/package.json +++ b/samples/grids/data-grid/row-grouping/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-highlighting/package.json b/samples/grids/data-grid/row-highlighting/package.json index 335286740c..bce69d652d 100644 --- a/samples/grids/data-grid/row-highlighting/package.json +++ b/samples/grids/data-grid/row-highlighting/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-paging/package.json b/samples/grids/data-grid/row-paging/package.json index a78ef26911..dd0cd14164 100644 --- a/samples/grids/data-grid/row-paging/package.json +++ b/samples/grids/data-grid/row-paging/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-pinning/package.json b/samples/grids/data-grid/row-pinning/package.json index ca2b68ba60..2765e6124a 100644 --- a/samples/grids/data-grid/row-pinning/package.json +++ b/samples/grids/data-grid/row-pinning/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/row-selection/package.json b/samples/grids/data-grid/row-selection/package.json index fd427ecf32..0575335580 100644 --- a/samples/grids/data-grid/row-selection/package.json +++ b/samples/grids/data-grid/row-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-comparison-table/package.json b/samples/grids/data-grid/type-comparison-table/package.json index 2880468004..e48ff8c063 100644 --- a/samples/grids/data-grid/type-comparison-table/package.json +++ b/samples/grids/data-grid/type-comparison-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-heatmap-table/package.json b/samples/grids/data-grid/type-heatmap-table/package.json index 8a6833f0b3..f30c773fc5 100644 --- a/samples/grids/data-grid/type-heatmap-table/package.json +++ b/samples/grids/data-grid/type-heatmap-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-marketing-table/package.json b/samples/grids/data-grid/type-marketing-table/package.json index d18a050c74..7f532c507c 100644 --- a/samples/grids/data-grid/type-marketing-table/package.json +++ b/samples/grids/data-grid/type-marketing-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-matrix-table/package.json b/samples/grids/data-grid/type-matrix-table/package.json index 61af44d537..29f2d2a9c6 100644 --- a/samples/grids/data-grid/type-matrix-table/package.json +++ b/samples/grids/data-grid/type-matrix-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/data-grid/type-periodic-table/package.json b/samples/grids/data-grid/type-periodic-table/package.json index b943c76927..de79acb629 100644 --- a/samples/grids/data-grid/type-periodic-table/package.json +++ b/samples/grids/data-grid/type-periodic-table/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", - "igniteui-react-data-grids": "19.3.1", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-data-grids": "19.3.2", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/action-strip/package.json b/samples/grids/grid/action-strip/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/action-strip/package.json +++ b/samples/grids/grid/action-strip/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/advanced-filtering-options/package.json b/samples/grids/grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/advanced-filtering-options/package.json +++ b/samples/grids/grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/advanced-filtering-style/package.json b/samples/grids/grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/advanced-filtering-style/package.json +++ b/samples/grids/grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/binding-composite-data/package.json b/samples/grids/grid/binding-composite-data/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/binding-composite-data/package.json +++ b/samples/grids/grid/binding-composite-data/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/binding-crud-data/package.json b/samples/grids/grid/binding-crud-data/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/binding-crud-data/package.json +++ b/samples/grids/grid/binding-crud-data/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/binding-nested-data-1/package.json b/samples/grids/grid/binding-nested-data-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/binding-nested-data-1/package.json +++ b/samples/grids/grid/binding-nested-data-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cascading-combo/package.json b/samples/grids/grid/cascading-combo/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cascading-combo/package.json +++ b/samples/grids/grid/cascading-combo/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-editing-sample/package.json b/samples/grids/grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-editing-sample/package.json +++ b/samples/grids/grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-editing-styling/package.json b/samples/grids/grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-editing-styling/package.json +++ b/samples/grids/grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/cell-merge-custom-sample/package.json b/samples/grids/grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/cell-merge-custom-sample/package.json +++ b/samples/grids/grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-merge/package.json b/samples/grids/grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/cell-merge/package.json +++ b/samples/grids/grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-mode/package.json b/samples/grids/grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/cell-selection-mode/package.json +++ b/samples/grids/grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/cell-selection-style/package.json b/samples/grids/grid/cell-selection-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/cell-selection-style/package.json +++ b/samples/grids/grid/cell-selection-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/change-icons-custom/package.json b/samples/grids/grid/change-icons-custom/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/change-icons-custom/package.json +++ b/samples/grids/grid/change-icons-custom/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/clipboard-operations/package.json b/samples/grids/grid/clipboard-operations/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/clipboard-operations/package.json +++ b/samples/grids/grid/clipboard-operations/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-auto-sizing/package.json b/samples/grids/grid/column-auto-sizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-auto-sizing/package.json +++ b/samples/grids/grid/column-auto-sizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-collapsible-groups/package.json b/samples/grids/grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-collapsible-groups/package.json +++ b/samples/grids/grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-data-types/package.json b/samples/grids/grid/column-data-types/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-data-types/package.json +++ b/samples/grids/grid/column-data-types/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-options/package.json b/samples/grids/grid/column-hiding-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-options/package.json +++ b/samples/grids/grid/column-hiding-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar-style/package.json b/samples/grids/grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-hiding-toolbar/package.json b/samples/grids/grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-hiding-toolbar/package.json +++ b/samples/grids/grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-moving-options/package.json b/samples/grids/grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-moving-options/package.json +++ b/samples/grids/grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-moving-styles/package.json b/samples/grids/grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-moving-styles/package.json +++ b/samples/grids/grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-pinning-options/package.json b/samples/grids/grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-options/package.json +++ b/samples/grids/grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-right-side/package.json b/samples/grids/grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-right-side/package.json +++ b/samples/grids/grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning-styles/package.json b/samples/grids/grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning-styles/package.json +++ b/samples/grids/grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-pinning/package.json b/samples/grids/grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-pinning/package.json +++ b/samples/grids/grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-resize-styling/package.json b/samples/grids/grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-resize-styling/package.json +++ b/samples/grids/grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-resizing/package.json b/samples/grids/grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-resizing/package.json +++ b/samples/grids/grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-selection-group/package.json b/samples/grids/grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-selection-group/package.json +++ b/samples/grids/grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-selection-mode/package.json b/samples/grids/grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/column-selection-mode/package.json +++ b/samples/grids/grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-selection-styles/package.json b/samples/grids/grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-selection-styles/package.json +++ b/samples/grids/grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-sorting-indicators/package.json b/samples/grids/grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-sorting-indicators/package.json +++ b/samples/grids/grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/column-sorting-options/package.json b/samples/grids/grid/column-sorting-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/column-sorting-options/package.json +++ b/samples/grids/grid/column-sorting-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/column-sorting-style/package.json b/samples/grids/grid/column-sorting-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/column-sorting-style/package.json +++ b/samples/grids/grid/column-sorting-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/conditional-cell-style-1/package.json b/samples/grids/grid/conditional-cell-style-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/conditional-cell-style-1/package.json +++ b/samples/grids/grid/conditional-cell-style-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/conditional-cell-style-2/package.json b/samples/grids/grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/conditional-cell-style-2/package.json +++ b/samples/grids/grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/conditional-row-selectors/package.json b/samples/grids/grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/conditional-row-selectors/package.json +++ b/samples/grids/grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/custom-context-menu/package.json b/samples/grids/grid/custom-context-menu/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/custom-context-menu/package.json +++ b/samples/grids/grid/custom-context-menu/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-batch-editing-actions/package.json b/samples/grids/grid/data-batch-editing-actions/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-batch-editing-actions/package.json +++ b/samples/grids/grid/data-batch-editing-actions/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-performance-virtualization/package.json b/samples/grids/grid/data-performance-virtualization/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-performance-virtualization/package.json +++ b/samples/grids/grid/data-performance-virtualization/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-searching/package.json b/samples/grids/grid/data-searching/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/data-searching/package.json +++ b/samples/grids/grid/data-searching/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-summary-formatter/package.json b/samples/grids/grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-summary-formatter/package.json +++ b/samples/grids/grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-summary-options/package.json b/samples/grids/grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-summary-options/package.json +++ b/samples/grids/grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-summary-template/package.json b/samples/grids/grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-summary-template/package.json +++ b/samples/grids/grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validation-style/package.json b/samples/grids/grid/data-validation-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/data-validation-style/package.json +++ b/samples/grids/grid/data-validation-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/data-validator-service-cross-field/package.json b/samples/grids/grid/data-validator-service-cross-field/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service-cross-field/package.json +++ b/samples/grids/grid/data-validator-service-cross-field/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service-extended/package.json b/samples/grids/grid/data-validator-service-extended/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service-extended/package.json +++ b/samples/grids/grid/data-validator-service-extended/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/data-validator-service/package.json b/samples/grids/grid/data-validator-service/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/data-validator-service/package.json +++ b/samples/grids/grid/data-validator-service/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/disabled-summaries/package.json b/samples/grids/grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/grid/disabled-summaries/package.json +++ b/samples/grids/grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/grid/editing-columns/package.json b/samples/grids/grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-columns/package.json +++ b/samples/grids/grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-events/package.json b/samples/grids/grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-events/package.json +++ b/samples/grids/grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/editing-excel-style/package.json b/samples/grids/grid/editing-excel-style/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/editing-excel-style/package.json +++ b/samples/grids/grid/editing-excel-style/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/editing-lifecycle/package.json b/samples/grids/grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/editing-lifecycle/package.json +++ b/samples/grids/grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/excel-exporting/package.json b/samples/grids/grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/excel-exporting/package.json +++ b/samples/grids/grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-1/package.json b/samples/grids/grid/excel-style-filtering-sample-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-2/package.json b/samples/grids/grid/excel-style-filtering-sample-2/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-2/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-sample-3/package.json b/samples/grids/grid/excel-style-filtering-sample-3/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/grid/excel-style-filtering-sample-3/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/excel-style-filtering-style/package.json b/samples/grids/grid/excel-style-filtering-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/excel-style-filtering-style/package.json +++ b/samples/grids/grid/excel-style-filtering-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/external-advanced-filtering/package.json b/samples/grids/grid/external-advanced-filtering/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/external-advanced-filtering/package.json +++ b/samples/grids/grid/external-advanced-filtering/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-options/package.json b/samples/grids/grid/filtering-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/filtering-options/package.json +++ b/samples/grids/grid/filtering-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/filtering-strategy/package.json b/samples/grids/grid/filtering-strategy/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/filtering-strategy/package.json +++ b/samples/grids/grid/filtering-strategy/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/filtering-style/package.json b/samples/grids/grid/filtering-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/filtering-style/package.json +++ b/samples/grids/grid/filtering-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/finjs/package.json b/samples/grids/grid/finjs/package.json index 287107a137..95efd87c5e 100644 --- a/samples/grids/grid/finjs/package.json +++ b/samples/grids/grid/finjs/package.json @@ -16,12 +16,12 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-custom/package.json b/samples/grids/grid/groupby-custom/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/groupby-custom/package.json +++ b/samples/grids/grid/groupby-custom/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-expressions/package.json b/samples/grids/grid/groupby-expressions/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-expressions/package.json +++ b/samples/grids/grid/groupby-expressions/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-paging/package.json b/samples/grids/grid/groupby-paging/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-paging/package.json +++ b/samples/grids/grid/groupby-paging/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-styling/package.json b/samples/grids/grid/groupby-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/groupby-styling/package.json +++ b/samples/grids/grid/groupby-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/groupby-summary-options/package.json b/samples/grids/grid/groupby-summary-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/groupby-summary-options/package.json +++ b/samples/grids/grid/groupby-summary-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/groupby-summary-styling/package.json b/samples/grids/grid/groupby-summary-styling/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/groupby-summary-styling/package.json +++ b/samples/grids/grid/groupby-summary-styling/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/infinite-scroll/package.json b/samples/grids/grid/infinite-scroll/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/infinite-scroll/package.json +++ b/samples/grids/grid/infinite-scroll/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/keyboard-custom-navigation/package.json b/samples/grids/grid/keyboard-custom-navigation/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/keyboard-custom-navigation/package.json +++ b/samples/grids/grid/keyboard-custom-navigation/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/keyboard-mrl-navigation/package.json b/samples/grids/grid/keyboard-mrl-navigation/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/keyboard-mrl-navigation/package.json +++ b/samples/grids/grid/keyboard-mrl-navigation/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/layout-display-density/package.json b/samples/grids/grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/layout-display-density/package.json +++ b/samples/grids/grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/master-detail/package.json b/samples/grids/grid/master-detail/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/master-detail/package.json +++ b/samples/grids/grid/master-detail/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-cell-selection-mode/package.json b/samples/grids/grid/multi-cell-selection-mode/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/multi-cell-selection-mode/package.json +++ b/samples/grids/grid/multi-cell-selection-mode/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-export/package.json b/samples/grids/grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-export/package.json +++ b/samples/grids/grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-column-headers-overview/package.json b/samples/grids/grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/multi-column-headers-overview/package.json +++ b/samples/grids/grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/multi-column-headers-styling/package.json b/samples/grids/grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-styling/package.json +++ b/samples/grids/grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-column-headers-template/package.json b/samples/grids/grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-column-headers-template/package.json +++ b/samples/grids/grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-row-layout-options/package.json b/samples/grids/grid/multi-row-layout-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-row-layout-options/package.json +++ b/samples/grids/grid/multi-row-layout-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/multi-row-layout-style/package.json b/samples/grids/grid/multi-row-layout-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/multi-row-layout-style/package.json +++ b/samples/grids/grid/multi-row-layout-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/overview/package.json b/samples/grids/grid/overview/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/overview/package.json +++ b/samples/grids/grid/overview/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/paste/package.json b/samples/grids/grid/paste/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/paste/package.json +++ b/samples/grids/grid/paste/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-data/package.json b/samples/grids/grid/remote-paging-data/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/remote-paging-data/package.json +++ b/samples/grids/grid/remote-paging-data/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/remote-paging-grid/package.json b/samples/grids/grid/remote-paging-grid/package.json index dddd06b5f4..45f78f1c75 100644 --- a/samples/grids/grid/remote-paging-grid/package.json +++ b/samples/grids/grid/remote-paging-grid/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-adding/package.json b/samples/grids/grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-adding/package.json +++ b/samples/grids/grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-classes/package.json b/samples/grids/grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-classes/package.json +++ b/samples/grids/grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-drag-base/package.json b/samples/grids/grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/row-drag-base/package.json +++ b/samples/grids/grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-editing-options/package.json b/samples/grids/grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-editing-options/package.json +++ b/samples/grids/grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-editing-style/package.json b/samples/grids/grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-editing-style/package.json +++ b/samples/grids/grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-paging-basic/package.json b/samples/grids/grid/row-paging-basic/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-paging-basic/package.json +++ b/samples/grids/grid/row-paging-basic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-paging-options/package.json b/samples/grids/grid/row-paging-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-paging-options/package.json +++ b/samples/grids/grid/row-paging-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-drag/package.json b/samples/grids/grid/row-pinning-drag/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-drag/package.json +++ b/samples/grids/grid/row-pinning-drag/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-extra-column/package.json b/samples/grids/grid/row-pinning-extra-column/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-extra-column/package.json +++ b/samples/grids/grid/row-pinning-extra-column/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-options/package.json b/samples/grids/grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-pinning-options/package.json +++ b/samples/grids/grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-pinning-style/package.json b/samples/grids/grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-pinning-style/package.json +++ b/samples/grids/grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-reorder/package.json b/samples/grids/grid/row-reorder/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-reorder/package.json +++ b/samples/grids/grid/row-reorder/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-mode/package.json b/samples/grids/grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-selection-mode/package.json +++ b/samples/grids/grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-excel/package.json b/samples/grids/grid/row-selection-template-excel/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/grid/row-selection-template-excel/package.json +++ b/samples/grids/grid/row-selection-template-excel/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/row-selection-template-numbers/package.json b/samples/grids/grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-selection-template-numbers/package.json +++ b/samples/grids/grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/row-styles/package.json b/samples/grids/grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/row-styles/package.json +++ b/samples/grids/grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/state-persistence-about/package.json b/samples/grids/grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/state-persistence-about/package.json +++ b/samples/grids/grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/state-persistence-main/package.json b/samples/grids/grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/grid/state-persistence-main/package.json +++ b/samples/grids/grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/grid/styling-custom-CSS/package.json b/samples/grids/grid/styling-custom-CSS/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/styling-custom-CSS/package.json +++ b/samples/grids/grid/styling-custom-CSS/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-1/package.json b/samples/grids/grid/toolbar-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-1/package.json +++ b/samples/grids/grid/toolbar-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-2/package.json b/samples/grids/grid/toolbar-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-2/package.json +++ b/samples/grids/grid/toolbar-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-sample-3/package.json b/samples/grids/grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-sample-3/package.json +++ b/samples/grids/grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/grid/toolbar-style/package.json b/samples/grids/grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/grid/toolbar-style/package.json +++ b/samples/grids/grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/action-strip/package.json b/samples/grids/hierarchical-grid/action-strip/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/action-strip/package.json +++ b/samples/grids/hierarchical-grid/action-strip/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-options/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/advanced-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-sample/package.json b/samples/grids/hierarchical-grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/cell-editing-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-editing-styling/package.json b/samples/grids/hierarchical-grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/cell-editing-styling/package.json +++ b/samples/grids/hierarchical-grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/hierarchical-grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-merge/package.json b/samples/grids/hierarchical-grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/cell-merge/package.json +++ b/samples/grids/hierarchical-grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-mode/package.json b/samples/grids/hierarchical-grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-overview/package.json b/samples/grids/hierarchical-grid/cell-selection-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-overview/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/cell-selection-style/package.json b/samples/grids/hierarchical-grid/cell-selection-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/cell-selection-style/package.json +++ b/samples/grids/hierarchical-grid/cell-selection-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-auto-sizing/package.json b/samples/grids/hierarchical-grid/column-auto-sizing/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/column-auto-sizing/package.json +++ b/samples/grids/hierarchical-grid/column-auto-sizing/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-collapsible-groups/package.json +++ b/samples/grids/hierarchical-grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json +++ b/samples/grids/hierarchical-grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-options/package.json b/samples/grids/hierarchical-grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-moving-options/package.json +++ b/samples/grids/hierarchical-grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-moving-styles/package.json b/samples/grids/hierarchical-grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-moving-styles/package.json +++ b/samples/grids/hierarchical-grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-options/package.json b/samples/grids/hierarchical-grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-right-side/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-styles/package.json b/samples/grids/hierarchical-grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning-styles/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning/package.json b/samples/grids/hierarchical-grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-pinning/package.json +++ b/samples/grids/hierarchical-grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-resize-styling/package.json b/samples/grids/hierarchical-grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-resize-styling/package.json +++ b/samples/grids/hierarchical-grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-resizing/package.json b/samples/grids/hierarchical-grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-resizing/package.json +++ b/samples/grids/hierarchical-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-group/package.json b/samples/grids/hierarchical-grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-selection-group/package.json +++ b/samples/grids/hierarchical-grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-mode/package.json b/samples/grids/hierarchical-grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/column-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/column-selection-styles/package.json b/samples/grids/hierarchical-grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-selection-styles/package.json +++ b/samples/grids/hierarchical-grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-indicators/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-options/package.json b/samples/grids/hierarchical-grid/column-sorting-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-options/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/column-sorting-style/package.json b/samples/grids/hierarchical-grid/column-sorting-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/column-sorting-style/package.json +++ b/samples/grids/hierarchical-grid/column-sorting-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json +++ b/samples/grids/hierarchical-grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/conditional-row-selectors/package.json +++ b/samples/grids/hierarchical-grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/custom-filtering/package.json b/samples/grids/hierarchical-grid/custom-filtering/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/custom-filtering/package.json +++ b/samples/grids/hierarchical-grid/custom-filtering/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/data-exporting-indicator/package.json +++ b/samples/grids/hierarchical-grid/data-exporting-indicator/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/data-performance-virtualization/package.json +++ b/samples/grids/hierarchical-grid/data-performance-virtualization/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-formatter/package.json b/samples/grids/hierarchical-grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-formatter/package.json +++ b/samples/grids/hierarchical-grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-options-styling/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-options/package.json b/samples/grids/hierarchical-grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/data-summary-options/package.json +++ b/samples/grids/hierarchical-grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/data-summary-template/package.json b/samples/grids/hierarchical-grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/data-summary-template/package.json +++ b/samples/grids/hierarchical-grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/disabled-summaries/package.json b/samples/grids/hierarchical-grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/hierarchical-grid/disabled-summaries/package.json +++ b/samples/grids/hierarchical-grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/editing-columns/package.json b/samples/grids/hierarchical-grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-columns/package.json +++ b/samples/grids/hierarchical-grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-events/package.json b/samples/grids/hierarchical-grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-events/package.json +++ b/samples/grids/hierarchical-grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/editing-lifecycle/package.json b/samples/grids/hierarchical-grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/editing-lifecycle/package.json +++ b/samples/grids/hierarchical-grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-exporting/package.json b/samples/grids/hierarchical-grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-exporting/package.json +++ b/samples/grids/hierarchical-grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json +++ b/samples/grids/hierarchical-grid/excel-style-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-options/package.json b/samples/grids/hierarchical-grid/filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/filtering-options/package.json +++ b/samples/grids/hierarchical-grid/filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/filtering-style/package.json b/samples/grids/hierarchical-grid/filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/filtering-style/package.json +++ b/samples/grids/hierarchical-grid/filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-paging-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json +++ b/samples/grids/hierarchical-grid/hierarchical-grid-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/layout-display-density/package.json b/samples/grids/hierarchical-grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/layout-display-density/package.json +++ b/samples/grids/hierarchical-grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-export/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/multi-column-headers-template/package.json +++ b/samples/grids/hierarchical-grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/overview/package.json b/samples/grids/hierarchical-grid/overview/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/overview/package.json +++ b/samples/grids/hierarchical-grid/overview/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json +++ b/samples/grids/hierarchical-grid/remote-paging-hgrid/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-adding/package.json b/samples/grids/hierarchical-grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-adding/package.json +++ b/samples/grids/hierarchical-grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-classes/package.json b/samples/grids/hierarchical-grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-classes/package.json +++ b/samples/grids/hierarchical-grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-drag-base/package.json b/samples/grids/hierarchical-grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/row-drag-base/package.json +++ b/samples/grids/hierarchical-grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-options/package.json b/samples/grids/hierarchical-grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-editing-options/package.json +++ b/samples/grids/hierarchical-grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-editing-style/package.json b/samples/grids/hierarchical-grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-editing-style/package.json +++ b/samples/grids/hierarchical-grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-extra-column/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-options/package.json b/samples/grids/hierarchical-grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-pinning-options/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-pinning-style/package.json b/samples/grids/hierarchical-grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-pinning-style/package.json +++ b/samples/grids/hierarchical-grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-reorder/package.json b/samples/grids/hierarchical-grid/row-reorder/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-reorder/package.json +++ b/samples/grids/hierarchical-grid/row-reorder/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-mode/package.json b/samples/grids/hierarchical-grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/hierarchical-grid/row-selection-mode/package.json +++ b/samples/grids/hierarchical-grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json +++ b/samples/grids/hierarchical-grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/row-styles/package.json b/samples/grids/hierarchical-grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/row-styles/package.json +++ b/samples/grids/hierarchical-grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-about/package.json b/samples/grids/hierarchical-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/state-persistence-about/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/state-persistence-main/package.json b/samples/grids/hierarchical-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/state-persistence-main/package.json +++ b/samples/grids/hierarchical-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-3/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/hierarchical-grid/toolbar-sample-4/package.json +++ b/samples/grids/hierarchical-grid/toolbar-sample-4/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/hierarchical-grid/toolbar-style/package.json b/samples/grids/hierarchical-grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/hierarchical-grid/toolbar-style/package.json +++ b/samples/grids/hierarchical-grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/list/add-list-items/package.json b/samples/grids/list/add-list-items/package.json index aa8368d162..6f4715f723 100644 --- a/samples/grids/list/add-list-items/package.json +++ b/samples/grids/list/add-list-items/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/list-item-content/package.json b/samples/grids/list/list-item-content/package.json index 1973f75948..8a4aa8aa20 100644 --- a/samples/grids/list/list-item-content/package.json +++ b/samples/grids/list/list-item-content/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/overview/package.json b/samples/grids/list/overview/package.json index 1db75aa0af..b06067b4e6 100644 --- a/samples/grids/list/overview/package.json +++ b/samples/grids/list/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/list/styling/package.json b/samples/grids/list/styling/package.json index 60d0a8dac2..eda8a86298 100644 --- a/samples/grids/list/styling/package.json +++ b/samples/grids/list/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/pivot-grid/aggregate-max-sales/package.json b/samples/grids/pivot-grid/aggregate-max-sales/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/aggregate-max-sales/package.json +++ b/samples/grids/pivot-grid/aggregate-max-sales/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/aggregate-units-sold/package.json b/samples/grids/pivot-grid/aggregate-units-sold/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/aggregate-units-sold/package.json +++ b/samples/grids/pivot-grid/aggregate-units-sold/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/data-selector/package.json b/samples/grids/pivot-grid/data-selector/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/data-selector/package.json +++ b/samples/grids/pivot-grid/data-selector/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/features/package.json b/samples/grids/pivot-grid/features/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/pivot-grid/features/package.json +++ b/samples/grids/pivot-grid/features/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-about/package.json b/samples/grids/pivot-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/state-persistence-about/package.json +++ b/samples/grids/pivot-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/pivot-grid/state-persistence-main/package.json b/samples/grids/pivot-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/pivot-grid/state-persistence-main/package.json +++ b/samples/grids/pivot-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/action-strip/package.json b/samples/grids/tree-grid/action-strip/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/action-strip/package.json +++ b/samples/grids/tree-grid/action-strip/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-options/package.json b/samples/grids/tree-grid/advanced-filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/advanced-filtering-options/package.json +++ b/samples/grids/tree-grid/advanced-filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/advanced-filtering-style/package.json b/samples/grids/tree-grid/advanced-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/advanced-filtering-style/package.json +++ b/samples/grids/tree-grid/advanced-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-editing-sample/package.json b/samples/grids/tree-grid/cell-editing-sample/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-editing-sample/package.json +++ b/samples/grids/tree-grid/cell-editing-sample/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-editing-styling/package.json b/samples/grids/tree-grid/cell-editing-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-editing-styling/package.json +++ b/samples/grids/tree-grid/cell-editing-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/cell-merge-custom-sample/package.json b/samples/grids/tree-grid/cell-merge-custom-sample/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/cell-merge-custom-sample/package.json +++ b/samples/grids/tree-grid/cell-merge-custom-sample/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-merge/package.json b/samples/grids/tree-grid/cell-merge/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/cell-merge/package.json +++ b/samples/grids/tree-grid/cell-merge/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-mode/package.json b/samples/grids/tree-grid/cell-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/cell-selection-mode/package.json +++ b/samples/grids/tree-grid/cell-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/cell-selection-style/package.json b/samples/grids/tree-grid/cell-selection-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/cell-selection-style/package.json +++ b/samples/grids/tree-grid/cell-selection-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/clipboard-operations/package.json b/samples/grids/tree-grid/clipboard-operations/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/clipboard-operations/package.json +++ b/samples/grids/tree-grid/clipboard-operations/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-auto-sizing/package.json b/samples/grids/tree-grid/column-auto-sizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-auto-sizing/package.json +++ b/samples/grids/tree-grid/column-auto-sizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-collapsible-groups/package.json b/samples/grids/tree-grid/column-collapsible-groups/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-collapsible-groups/package.json +++ b/samples/grids/tree-grid/column-collapsible-groups/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-data-types/package.json b/samples/grids/tree-grid/column-data-types/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/column-data-types/package.json +++ b/samples/grids/tree-grid/column-data-types/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar-style/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-hiding-toolbar/package.json b/samples/grids/tree-grid/column-hiding-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-hiding-toolbar/package.json +++ b/samples/grids/tree-grid/column-hiding-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-moving-options/package.json b/samples/grids/tree-grid/column-moving-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-moving-options/package.json +++ b/samples/grids/tree-grid/column-moving-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-moving-styles/package.json b/samples/grids/tree-grid/column-moving-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-moving-styles/package.json +++ b/samples/grids/tree-grid/column-moving-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index 50a37dabf1..6df749c048 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-pinning-options/package.json b/samples/grids/tree-grid/column-pinning-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-options/package.json +++ b/samples/grids/tree-grid/column-pinning-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-right-side/package.json b/samples/grids/tree-grid/column-pinning-right-side/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-right-side/package.json +++ b/samples/grids/tree-grid/column-pinning-right-side/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-styles/package.json b/samples/grids/tree-grid/column-pinning-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-styles/package.json +++ b/samples/grids/tree-grid/column-pinning-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning-toolbar/package.json b/samples/grids/tree-grid/column-pinning-toolbar/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning-toolbar/package.json +++ b/samples/grids/tree-grid/column-pinning-toolbar/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-pinning/package.json b/samples/grids/tree-grid/column-pinning/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-pinning/package.json +++ b/samples/grids/tree-grid/column-pinning/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-resize-styling/package.json b/samples/grids/tree-grid/column-resize-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-resize-styling/package.json +++ b/samples/grids/tree-grid/column-resize-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-resizing/package.json b/samples/grids/tree-grid/column-resizing/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-resizing/package.json +++ b/samples/grids/tree-grid/column-resizing/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-selection-group/package.json b/samples/grids/tree-grid/column-selection-group/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-selection-group/package.json +++ b/samples/grids/tree-grid/column-selection-group/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-selection-mode/package.json b/samples/grids/tree-grid/column-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-selection-mode/package.json +++ b/samples/grids/tree-grid/column-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-style/package.json b/samples/grids/tree-grid/column-selection-style/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/column-selection-style/package.json +++ b/samples/grids/tree-grid/column-selection-style/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-selection-styles/package.json b/samples/grids/tree-grid/column-selection-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-selection-styles/package.json +++ b/samples/grids/tree-grid/column-selection-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-sorting-indicators/package.json b/samples/grids/tree-grid/column-sorting-indicators/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/column-sorting-indicators/package.json +++ b/samples/grids/tree-grid/column-sorting-indicators/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/column-sorting-options/package.json b/samples/grids/tree-grid/column-sorting-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-sorting-options/package.json +++ b/samples/grids/tree-grid/column-sorting-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/column-sorting-style/package.json b/samples/grids/tree-grid/column-sorting-style/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/column-sorting-style/package.json +++ b/samples/grids/tree-grid/column-sorting-style/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-1/package.json b/samples/grids/tree-grid/conditional-cell-style-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-cell-style-1/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/conditional-cell-style-2/package.json b/samples/grids/tree-grid/conditional-cell-style-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-cell-style-2/package.json +++ b/samples/grids/tree-grid/conditional-cell-style-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/conditional-row-selectors/package.json b/samples/grids/tree-grid/conditional-row-selectors/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/conditional-row-selectors/package.json +++ b/samples/grids/tree-grid/conditional-row-selectors/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-exporting-indicator/package.json b/samples/grids/tree-grid/data-exporting-indicator/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/data-exporting-indicator/package.json +++ b/samples/grids/tree-grid/data-exporting-indicator/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-children/package.json b/samples/grids/tree-grid/data-summary-children/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/data-summary-children/package.json +++ b/samples/grids/tree-grid/data-summary-children/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/data-summary-formatter/package.json b/samples/grids/tree-grid/data-summary-formatter/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-formatter/package.json +++ b/samples/grids/tree-grid/data-summary-formatter/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-options-styling/package.json b/samples/grids/tree-grid/data-summary-options-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-options-styling/package.json +++ b/samples/grids/tree-grid/data-summary-options-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-options/package.json b/samples/grids/tree-grid/data-summary-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/data-summary-options/package.json +++ b/samples/grids/tree-grid/data-summary-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/data-summary-template/package.json b/samples/grids/tree-grid/data-summary-template/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/data-summary-template/package.json +++ b/samples/grids/tree-grid/data-summary-template/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/disabled-summaries/package.json b/samples/grids/tree-grid/disabled-summaries/package.json index 41db2db72d..454fcd13e5 100644 --- a/samples/grids/tree-grid/disabled-summaries/package.json +++ b/samples/grids/tree-grid/disabled-summaries/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "lit-html": "^3.2.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/grids/tree-grid/editing-columns/package.json b/samples/grids/tree-grid/editing-columns/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-columns/package.json +++ b/samples/grids/tree-grid/editing-columns/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-events/package.json b/samples/grids/tree-grid/editing-events/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-events/package.json +++ b/samples/grids/tree-grid/editing-events/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/editing-lifecycle/package.json b/samples/grids/tree-grid/editing-lifecycle/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/editing-lifecycle/package.json +++ b/samples/grids/tree-grid/editing-lifecycle/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-exporting/package.json b/samples/grids/tree-grid/excel-exporting/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-exporting/package.json +++ b/samples/grids/tree-grid/excel-exporting/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-1/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-2/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/excel-style-filtering-style/package.json b/samples/grids/tree-grid/excel-style-filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/excel-style-filtering-style/package.json +++ b/samples/grids/tree-grid/excel-style-filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/filtering-options/package.json b/samples/grids/tree-grid/filtering-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/filtering-options/package.json +++ b/samples/grids/tree-grid/filtering-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/filtering-style/package.json b/samples/grids/tree-grid/filtering-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/filtering-style/package.json +++ b/samples/grids/tree-grid/filtering-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/keyboard-custom-navigation/package.json b/samples/grids/tree-grid/keyboard-custom-navigation/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/keyboard-custom-navigation/package.json +++ b/samples/grids/tree-grid/keyboard-custom-navigation/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/layout-display-density/package.json b/samples/grids/tree-grid/layout-display-density/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/layout-display-density/package.json +++ b/samples/grids/tree-grid/layout-display-density/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-cell-selection-mode/package.json b/samples/grids/tree-grid/multi-cell-selection-mode/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/multi-cell-selection-mode/package.json +++ b/samples/grids/tree-grid/multi-cell-selection-mode/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-export/package.json b/samples/grids/tree-grid/multi-column-headers-export/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-export/package.json +++ b/samples/grids/tree-grid/multi-column-headers-export/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-overview/package.json b/samples/grids/tree-grid/multi-column-headers-overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/multi-column-headers-overview/package.json +++ b/samples/grids/tree-grid/multi-column-headers-overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-styling/package.json b/samples/grids/tree-grid/multi-column-headers-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-styling/package.json +++ b/samples/grids/tree-grid/multi-column-headers-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/multi-column-headers-template/package.json b/samples/grids/tree-grid/multi-column-headers-template/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/multi-column-headers-template/package.json +++ b/samples/grids/tree-grid/multi-column-headers-template/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/overview-styling/package.json b/samples/grids/tree-grid/overview-styling/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/overview-styling/package.json +++ b/samples/grids/tree-grid/overview-styling/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/overview/package.json b/samples/grids/tree-grid/overview/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/overview/package.json +++ b/samples/grids/tree-grid/overview/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-adding/package.json b/samples/grids/tree-grid/row-adding/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-adding/package.json +++ b/samples/grids/tree-grid/row-adding/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-classes/package.json b/samples/grids/tree-grid/row-classes/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-classes/package.json +++ b/samples/grids/tree-grid/row-classes/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-drag-base/package.json b/samples/grids/tree-grid/row-drag-base/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/row-drag-base/package.json +++ b/samples/grids/tree-grid/row-drag-base/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-editing-options/package.json b/samples/grids/tree-grid/row-editing-options/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-editing-options/package.json +++ b/samples/grids/tree-grid/row-editing-options/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-editing-style/package.json b/samples/grids/tree-grid/row-editing-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-editing-style/package.json +++ b/samples/grids/tree-grid/row-editing-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-paging-basic/package.json b/samples/grids/tree-grid/row-paging-basic/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-paging-basic/package.json +++ b/samples/grids/tree-grid/row-paging-basic/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-paging-options/package.json b/samples/grids/tree-grid/row-paging-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-paging-options/package.json +++ b/samples/grids/tree-grid/row-paging-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-paging-style/package.json b/samples/grids/tree-grid/row-paging-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-paging-style/package.json +++ b/samples/grids/tree-grid/row-paging-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-pinning-extra-column/package.json b/samples/grids/tree-grid/row-pinning-extra-column/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-pinning-extra-column/package.json +++ b/samples/grids/tree-grid/row-pinning-extra-column/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-pinning-options/package.json b/samples/grids/tree-grid/row-pinning-options/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-pinning-options/package.json +++ b/samples/grids/tree-grid/row-pinning-options/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-pinning-style/package.json b/samples/grids/tree-grid/row-pinning-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-pinning-style/package.json +++ b/samples/grids/tree-grid/row-pinning-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-reorder/package.json b/samples/grids/tree-grid/row-reorder/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-reorder/package.json +++ b/samples/grids/tree-grid/row-reorder/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-selection-mode/package.json b/samples/grids/tree-grid/row-selection-mode/package.json index 777c424c5b..c89ad99ec1 100644 --- a/samples/grids/tree-grid/row-selection-mode/package.json +++ b/samples/grids/tree-grid/row-selection-mode/package.json @@ -16,10 +16,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-excel/package.json b/samples/grids/tree-grid/row-selection-template-excel/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-selection-template-excel/package.json +++ b/samples/grids/tree-grid/row-selection-template-excel/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-selection-template-numbers/package.json b/samples/grids/tree-grid/row-selection-template-numbers/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-selection-template-numbers/package.json +++ b/samples/grids/tree-grid/row-selection-template-numbers/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/row-styles/package.json b/samples/grids/tree-grid/row-styles/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/row-styles/package.json +++ b/samples/grids/tree-grid/row-styles/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/state-persistence-about/package.json b/samples/grids/tree-grid/state-persistence-about/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/state-persistence-about/package.json +++ b/samples/grids/tree-grid/state-persistence-about/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/state-persistence-main/package.json b/samples/grids/tree-grid/state-persistence-main/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/state-persistence-main/package.json +++ b/samples/grids/tree-grid/state-persistence-main/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-1/package.json b/samples/grids/tree-grid/toolbar-sample-1/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-sample-1/package.json +++ b/samples/grids/tree-grid/toolbar-sample-1/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-2/package.json b/samples/grids/tree-grid/toolbar-sample-2/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/toolbar-sample-2/package.json +++ b/samples/grids/tree-grid/toolbar-sample-2/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-3/package.json b/samples/grids/tree-grid/toolbar-sample-3/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-sample-3/package.json +++ b/samples/grids/tree-grid/toolbar-sample-3/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/toolbar-sample-4/package.json b/samples/grids/tree-grid/toolbar-sample-4/package.json index 561900dfc2..0009537460 100644 --- a/samples/grids/tree-grid/toolbar-sample-4/package.json +++ b/samples/grids/tree-grid/toolbar-sample-4/package.json @@ -16,11 +16,11 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-datasources": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-datasources": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/grids/tree-grid/toolbar-style/package.json b/samples/grids/tree-grid/toolbar-style/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/toolbar-style/package.json +++ b/samples/grids/tree-grid/toolbar-style/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree-grid/using-primary-foreign-keys/package.json b/samples/grids/tree-grid/using-primary-foreign-keys/package.json index 11e321e91a..c2fc0d47eb 100644 --- a/samples/grids/tree-grid/using-primary-foreign-keys/package.json +++ b/samples/grids/tree-grid/using-primary-foreign-keys/package.json @@ -16,7 +16,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", diff --git a/samples/grids/tree/basic-example/package.json b/samples/grids/tree/basic-example/package.json index 2ef000db44..ca1082b56c 100644 --- a/samples/grids/tree/basic-example/package.json +++ b/samples/grids/tree/basic-example/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/grids/tree/styling/package.json b/samples/grids/tree/styling/package.json index 2ef000db44..ca1082b56c 100644 --- a/samples/grids/tree/styling/package.json +++ b/samples/grids/tree/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/inputs/badge/outlined/package.json b/samples/inputs/badge/outlined/package.json index 856a67bf9c..0178ba4842 100644 --- a/samples/inputs/badge/outlined/package.json +++ b/samples/inputs/badge/outlined/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/shape/package.json b/samples/inputs/badge/shape/package.json index 37d7b3227f..5c8fda3da8 100644 --- a/samples/inputs/badge/shape/package.json +++ b/samples/inputs/badge/shape/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/styling/package.json b/samples/inputs/badge/styling/package.json index 37d7b3227f..5c8fda3da8 100644 --- a/samples/inputs/badge/styling/package.json +++ b/samples/inputs/badge/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/badge/variants/package.json b/samples/inputs/badge/variants/package.json index 735a1a6ff0..0413f5f3b0 100644 --- a/samples/inputs/badge/variants/package.json +++ b/samples/inputs/badge/variants/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/alignment/package.json b/samples/inputs/button-group/alignment/package.json index c1b3978d43..703e0ca1a4 100644 --- a/samples/inputs/button-group/alignment/package.json +++ b/samples/inputs/button-group/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/overview/package.json b/samples/inputs/button-group/overview/package.json index 5e38f8f3bc..7b78f74cd9 100644 --- a/samples/inputs/button-group/overview/package.json +++ b/samples/inputs/button-group/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/selection/package.json b/samples/inputs/button-group/selection/package.json index c0a91f1e40..ffcabf4e88 100644 --- a/samples/inputs/button-group/selection/package.json +++ b/samples/inputs/button-group/selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/size/package.json b/samples/inputs/button-group/size/package.json index 34ad629ede..6401f0c6d4 100644 --- a/samples/inputs/button-group/size/package.json +++ b/samples/inputs/button-group/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button-group/styling/package.json b/samples/inputs/button-group/styling/package.json index 5e83052146..c3d7585c7f 100644 --- a/samples/inputs/button-group/styling/package.json +++ b/samples/inputs/button-group/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/contained/package.json b/samples/inputs/button/contained/package.json index 51d8d2ef70..e9a462dc8f 100644 --- a/samples/inputs/button/contained/package.json +++ b/samples/inputs/button/contained/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/download/package.json b/samples/inputs/button/download/package.json index 778dc20fbf..acb1a64367 100644 --- a/samples/inputs/button/download/package.json +++ b/samples/inputs/button/download/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/fab/package.json b/samples/inputs/button/fab/package.json index efa1595367..18d26379e9 100644 --- a/samples/inputs/button/fab/package.json +++ b/samples/inputs/button/fab/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/flat/package.json b/samples/inputs/button/flat/package.json index cfbfce3097..a6ae284fd2 100644 --- a/samples/inputs/button/flat/package.json +++ b/samples/inputs/button/flat/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/outlined/package.json b/samples/inputs/button/outlined/package.json index fe394c8e33..756ebecca2 100644 --- a/samples/inputs/button/outlined/package.json +++ b/samples/inputs/button/outlined/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/overview/package.json b/samples/inputs/button/overview/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/button/overview/package.json +++ b/samples/inputs/button/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/size/package.json b/samples/inputs/button/size/package.json index 8aeb8c52f9..b61c0f0e8c 100644 --- a/samples/inputs/button/size/package.json +++ b/samples/inputs/button/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/button/styling/package.json b/samples/inputs/button/styling/package.json index fa784a3479..96d272c3e6 100644 --- a/samples/inputs/button/styling/package.json +++ b/samples/inputs/button/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/checking/package.json b/samples/inputs/checkbox/checking/package.json index 1263d5fa13..991c707100 100644 --- a/samples/inputs/checkbox/checking/package.json +++ b/samples/inputs/checkbox/checking/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/disabled/package.json b/samples/inputs/checkbox/disabled/package.json index 19a91d7eb9..c0dc516935 100644 --- a/samples/inputs/checkbox/disabled/package.json +++ b/samples/inputs/checkbox/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/indeterminate/package.json b/samples/inputs/checkbox/indeterminate/package.json index 7d649b36d4..b6c0a68224 100644 --- a/samples/inputs/checkbox/indeterminate/package.json +++ b/samples/inputs/checkbox/indeterminate/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/label/package.json b/samples/inputs/checkbox/label/package.json index 4e2be4b3cb..2869826653 100644 --- a/samples/inputs/checkbox/label/package.json +++ b/samples/inputs/checkbox/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/overview/package.json b/samples/inputs/checkbox/overview/package.json index 327fd02b45..f0b0efa193 100644 --- a/samples/inputs/checkbox/overview/package.json +++ b/samples/inputs/checkbox/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/checkbox/styling/package.json b/samples/inputs/checkbox/styling/package.json index 327fd02b45..f0b0efa193 100644 --- a/samples/inputs/checkbox/styling/package.json +++ b/samples/inputs/checkbox/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/multiple/package.json b/samples/inputs/chip/multiple/package.json index 14c2cfef6d..55f3f42530 100644 --- a/samples/inputs/chip/multiple/package.json +++ b/samples/inputs/chip/multiple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/overview/package.json b/samples/inputs/chip/overview/package.json index 9227beab79..b99c744be3 100644 --- a/samples/inputs/chip/overview/package.json +++ b/samples/inputs/chip/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/size/package.json b/samples/inputs/chip/size/package.json index a20c58c37b..384bf419d1 100644 --- a/samples/inputs/chip/size/package.json +++ b/samples/inputs/chip/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/styling/package.json b/samples/inputs/chip/styling/package.json index 064947d854..fa5ea30caa 100644 --- a/samples/inputs/chip/styling/package.json +++ b/samples/inputs/chip/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/chip/variants/package.json b/samples/inputs/chip/variants/package.json index 03ba61b0c0..b386c6c040 100644 --- a/samples/inputs/chip/variants/package.json +++ b/samples/inputs/chip/variants/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/dynamic/package.json b/samples/inputs/circular-progress-indicator/dynamic/package.json index d9dee09a9e..71da02da4f 100644 --- a/samples/inputs/circular-progress-indicator/dynamic/package.json +++ b/samples/inputs/circular-progress-indicator/dynamic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/indeterminate/package.json b/samples/inputs/circular-progress-indicator/indeterminate/package.json index 32bb3da630..c99f4873bf 100644 --- a/samples/inputs/circular-progress-indicator/indeterminate/package.json +++ b/samples/inputs/circular-progress-indicator/indeterminate/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/simple/package.json b/samples/inputs/circular-progress-indicator/simple/package.json index 5a5787b64c..2753ac5295 100644 --- a/samples/inputs/circular-progress-indicator/simple/package.json +++ b/samples/inputs/circular-progress-indicator/simple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/circular-progress-indicator/styling/package.json b/samples/inputs/circular-progress-indicator/styling/package.json index f89a56bbb7..cebbef6920 100644 --- a/samples/inputs/circular-progress-indicator/styling/package.json +++ b/samples/inputs/circular-progress-indicator/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/color-editor/overview/package.json b/samples/inputs/color-editor/overview/package.json index 1f279260b8..04fac1198e 100644 --- a/samples/inputs/color-editor/overview/package.json +++ b/samples/inputs/color-editor/overview/package.json @@ -15,8 +15,8 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", - "igniteui-react-inputs": "19.3.1", + "igniteui-react-core": "19.3.2", + "igniteui-react-inputs": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/inputs/combo/features/package.json b/samples/inputs/combo/features/package.json index 3c4141b781..888661d770 100644 --- a/samples/inputs/combo/features/package.json +++ b/samples/inputs/combo/features/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/overview/package.json b/samples/inputs/combo/overview/package.json index 9d698d5a8d..7385e95467 100644 --- a/samples/inputs/combo/overview/package.json +++ b/samples/inputs/combo/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/selection/package.json b/samples/inputs/combo/selection/package.json index 07165d8e64..fdbb78a594 100644 --- a/samples/inputs/combo/selection/package.json +++ b/samples/inputs/combo/selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/simplified/package.json b/samples/inputs/combo/simplified/package.json index 62625b0462..9d144f8153 100644 --- a/samples/inputs/combo/simplified/package.json +++ b/samples/inputs/combo/simplified/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/styling/package.json b/samples/inputs/combo/styling/package.json index ff0f2c058b..b59d9d35fd 100644 --- a/samples/inputs/combo/styling/package.json +++ b/samples/inputs/combo/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/combo/templates/package.json b/samples/inputs/combo/templates/package.json index 125f3245f7..f73df5b5cb 100644 --- a/samples/inputs/combo/templates/package.json +++ b/samples/inputs/combo/templates/package.json @@ -14,10 +14,10 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-grids": "^19.5.0-beta.0", - "igniteui-react-inputs": "19.3.1", - "igniteui-react-layouts": "19.3.1", + "igniteui-react-inputs": "19.3.2", + "igniteui-react-layouts": "19.3.2", "igniteui-webcomponents": "^6.3.0", "lit-html": "^3.2.0", "react": "^19.2.0", diff --git a/samples/inputs/date-time-input/input-format-display-format/package.json b/samples/inputs/date-time-input/input-format-display-format/package.json index 2697bd5b9b..6904047895 100644 --- a/samples/inputs/date-time-input/input-format-display-format/package.json +++ b/samples/inputs/date-time-input/input-format-display-format/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/min-max-value/package.json b/samples/inputs/date-time-input/min-max-value/package.json index 0e0b6eeafc..9283342e65 100644 --- a/samples/inputs/date-time-input/min-max-value/package.json +++ b/samples/inputs/date-time-input/min-max-value/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/overview/package.json b/samples/inputs/date-time-input/overview/package.json index 0b896d8047..111c041659 100644 --- a/samples/inputs/date-time-input/overview/package.json +++ b/samples/inputs/date-time-input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/step-up-down/package.json b/samples/inputs/date-time-input/step-up-down/package.json index 0a1ec53b8a..5fc1fd1baa 100644 --- a/samples/inputs/date-time-input/step-up-down/package.json +++ b/samples/inputs/date-time-input/step-up-down/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/date-time-input/styling/package.json b/samples/inputs/date-time-input/styling/package.json index 0b896d8047..111c041659 100644 --- a/samples/inputs/date-time-input/styling/package.json +++ b/samples/inputs/date-time-input/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/group/package.json b/samples/inputs/dropdown/group/package.json index a52a67dca9..584221a3b6 100644 --- a/samples/inputs/dropdown/group/package.json +++ b/samples/inputs/dropdown/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/header/package.json b/samples/inputs/dropdown/header/package.json index 9f9ce4a1e1..b0cc2ce9a8 100644 --- a/samples/inputs/dropdown/header/package.json +++ b/samples/inputs/dropdown/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/item/package.json b/samples/inputs/dropdown/item/package.json index 54ab4ea916..2395c2069a 100644 --- a/samples/inputs/dropdown/item/package.json +++ b/samples/inputs/dropdown/item/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/overview/package.json b/samples/inputs/dropdown/overview/package.json index f0c861b80e..aee8ecabb4 100644 --- a/samples/inputs/dropdown/overview/package.json +++ b/samples/inputs/dropdown/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/position/package.json b/samples/inputs/dropdown/position/package.json index 007be6baf5..6c913890ff 100644 --- a/samples/inputs/dropdown/position/package.json +++ b/samples/inputs/dropdown/position/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/styling/package.json b/samples/inputs/dropdown/styling/package.json index 231ef8bc68..54d2a2afc9 100644 --- a/samples/inputs/dropdown/styling/package.json +++ b/samples/inputs/dropdown/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/dropdown/target/package.json b/samples/inputs/dropdown/target/package.json index 6ef2f28276..db16cc4c19 100644 --- a/samples/inputs/dropdown/target/package.json +++ b/samples/inputs/dropdown/target/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/size/package.json b/samples/inputs/icon-button/size/package.json index daf7bce7ff..2d2fe601e4 100644 --- a/samples/inputs/icon-button/size/package.json +++ b/samples/inputs/icon-button/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/styling/package.json b/samples/inputs/icon-button/styling/package.json index f4d8f556ab..f90d466e81 100644 --- a/samples/inputs/icon-button/styling/package.json +++ b/samples/inputs/icon-button/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/icon-button/variant/package.json b/samples/inputs/icon-button/variant/package.json index e6f93dbcaf..528ae082f7 100644 --- a/samples/inputs/icon-button/variant/package.json +++ b/samples/inputs/icon-button/variant/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/helper-text/package.json b/samples/inputs/input/helper-text/package.json index 9367d30c7e..346782cb96 100644 --- a/samples/inputs/input/helper-text/package.json +++ b/samples/inputs/input/helper-text/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/overview/package.json b/samples/inputs/input/overview/package.json index 19b3da568e..8e3e0a8921 100644 --- a/samples/inputs/input/overview/package.json +++ b/samples/inputs/input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/prefix-suffix/package.json b/samples/inputs/input/prefix-suffix/package.json index f28a6a46fc..1d993c3d66 100644 --- a/samples/inputs/input/prefix-suffix/package.json +++ b/samples/inputs/input/prefix-suffix/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/size/package.json b/samples/inputs/input/size/package.json index 6e30ba9d91..9797aa3fe0 100644 --- a/samples/inputs/input/size/package.json +++ b/samples/inputs/input/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/input/styling/package.json b/samples/inputs/input/styling/package.json index a71364ecc8..688d44f3f8 100644 --- a/samples/inputs/input/styling/package.json +++ b/samples/inputs/input/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/dynamic/package.json b/samples/inputs/linear-progress-indicator/dynamic/package.json index 927b1530a5..a5f4244928 100644 --- a/samples/inputs/linear-progress-indicator/dynamic/package.json +++ b/samples/inputs/linear-progress-indicator/dynamic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/simple/package.json b/samples/inputs/linear-progress-indicator/simple/package.json index 47be883d95..dd4966314a 100644 --- a/samples/inputs/linear-progress-indicator/simple/package.json +++ b/samples/inputs/linear-progress-indicator/simple/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/striped/package.json b/samples/inputs/linear-progress-indicator/striped/package.json index bc35a4e1e8..1285eb4da8 100644 --- a/samples/inputs/linear-progress-indicator/striped/package.json +++ b/samples/inputs/linear-progress-indicator/striped/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/styling/package.json b/samples/inputs/linear-progress-indicator/styling/package.json index 023128b55f..ce8efbaecd 100644 --- a/samples/inputs/linear-progress-indicator/styling/package.json +++ b/samples/inputs/linear-progress-indicator/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/linear-progress-indicator/types/package.json b/samples/inputs/linear-progress-indicator/types/package.json index 11a662151a..90ce023c8a 100644 --- a/samples/inputs/linear-progress-indicator/types/package.json +++ b/samples/inputs/linear-progress-indicator/types/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/applying-mask/package.json b/samples/inputs/mask-input/applying-mask/package.json index d367cd0ee8..83f1e89265 100644 --- a/samples/inputs/mask-input/applying-mask/package.json +++ b/samples/inputs/mask-input/applying-mask/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/overview/package.json b/samples/inputs/mask-input/overview/package.json index 3b1ffdc086..d2b31e252f 100644 --- a/samples/inputs/mask-input/overview/package.json +++ b/samples/inputs/mask-input/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/mask-input/value-modes/package.json b/samples/inputs/mask-input/value-modes/package.json index c95f859f9f..2e01755dbf 100644 --- a/samples/inputs/mask-input/value-modes/package.json +++ b/samples/inputs/mask-input/value-modes/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/alignment/package.json b/samples/inputs/radio/alignment/package.json index 40decfd393..899327a8ab 100644 --- a/samples/inputs/radio/alignment/package.json +++ b/samples/inputs/radio/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/disabled/package.json b/samples/inputs/radio/disabled/package.json index 6ebe5b5e18..b1ad9f4aef 100644 --- a/samples/inputs/radio/disabled/package.json +++ b/samples/inputs/radio/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/group/package.json b/samples/inputs/radio/group/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/inputs/radio/group/package.json +++ b/samples/inputs/radio/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/invalid/package.json b/samples/inputs/radio/invalid/package.json index cd43eba4ea..2f98e54f1f 100644 --- a/samples/inputs/radio/invalid/package.json +++ b/samples/inputs/radio/invalid/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/label/package.json b/samples/inputs/radio/label/package.json index bb0f0e468f..008cfa3fa9 100644 --- a/samples/inputs/radio/label/package.json +++ b/samples/inputs/radio/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/radio/styling/package.json b/samples/inputs/radio/styling/package.json index 4eb29d0096..d0ba78dea1 100644 --- a/samples/inputs/radio/styling/package.json +++ b/samples/inputs/radio/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/basic/package.json b/samples/inputs/rating/basic/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/basic/package.json +++ b/samples/inputs/rating/basic/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/custom/package.json b/samples/inputs/rating/custom/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/custom/package.json +++ b/samples/inputs/rating/custom/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/empty/package.json b/samples/inputs/rating/empty/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/empty/package.json +++ b/samples/inputs/rating/empty/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/single-selection/package.json b/samples/inputs/rating/single-selection/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/single-selection/package.json +++ b/samples/inputs/rating/single-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/rating/styling/package.json b/samples/inputs/rating/styling/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/rating/styling/package.json +++ b/samples/inputs/rating/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/ripple/button/package.json b/samples/inputs/ripple/button/package.json index b184802001..18b14290ed 100644 --- a/samples/inputs/ripple/button/package.json +++ b/samples/inputs/ripple/button/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/ripple/color/package.json b/samples/inputs/ripple/color/package.json index c5ea923da7..0e2e865bed 100644 --- a/samples/inputs/ripple/color/package.json +++ b/samples/inputs/ripple/color/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/group/package.json b/samples/inputs/select/group/package.json index 67c3fd8846..0e9ea2ed4e 100644 --- a/samples/inputs/select/group/package.json +++ b/samples/inputs/select/group/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/header/package.json b/samples/inputs/select/header/package.json index dbe050e018..cbf71c93a2 100644 --- a/samples/inputs/select/header/package.json +++ b/samples/inputs/select/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/item/package.json b/samples/inputs/select/item/package.json index 65d7548b71..cf6fb9557f 100644 --- a/samples/inputs/select/item/package.json +++ b/samples/inputs/select/item/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/overview/package.json b/samples/inputs/select/overview/package.json index 9cd1cf5941..389b6be0a1 100644 --- a/samples/inputs/select/overview/package.json +++ b/samples/inputs/select/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/select/styling/package.json b/samples/inputs/select/styling/package.json index 7d83f15dc4..b54edad777 100644 --- a/samples/inputs/select/styling/package.json +++ b/samples/inputs/select/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/constraints/package.json b/samples/inputs/slider/constraints/package.json index 50adc9b0bb..4306c5923c 100644 --- a/samples/inputs/slider/constraints/package.json +++ b/samples/inputs/slider/constraints/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/disabled/package.json b/samples/inputs/slider/disabled/package.json index b56bd914bf..d42ec6afcc 100644 --- a/samples/inputs/slider/disabled/package.json +++ b/samples/inputs/slider/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/discrete/package.json b/samples/inputs/slider/discrete/package.json index 145404d460..c9ac5a7c2f 100644 --- a/samples/inputs/slider/discrete/package.json +++ b/samples/inputs/slider/discrete/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/labels/package.json b/samples/inputs/slider/labels/package.json index 95088a7a7f..0691a62705 100644 --- a/samples/inputs/slider/labels/package.json +++ b/samples/inputs/slider/labels/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/overview/package.json b/samples/inputs/slider/overview/package.json index da46401402..58aa93cd2d 100644 --- a/samples/inputs/slider/overview/package.json +++ b/samples/inputs/slider/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/styling/package.json b/samples/inputs/slider/styling/package.json index 56967b947d..02b6a6b82f 100644 --- a/samples/inputs/slider/styling/package.json +++ b/samples/inputs/slider/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/tick-labels/package.json b/samples/inputs/slider/tick-labels/package.json index b288ca6554..a3c988e168 100644 --- a/samples/inputs/slider/tick-labels/package.json +++ b/samples/inputs/slider/tick-labels/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/ticks/package.json b/samples/inputs/slider/ticks/package.json index f6edac7959..8618497d1c 100644 --- a/samples/inputs/slider/ticks/package.json +++ b/samples/inputs/slider/ticks/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/value-format/package.json b/samples/inputs/slider/value-format/package.json index 7e2dfeef43..29f204f6e3 100644 --- a/samples/inputs/slider/value-format/package.json +++ b/samples/inputs/slider/value-format/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/slider/value/package.json b/samples/inputs/slider/value/package.json index 2171fc5c26..9a62eb0711 100644 --- a/samples/inputs/slider/value/package.json +++ b/samples/inputs/slider/value/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/checking/package.json b/samples/inputs/switches/checking/package.json index 87113634e4..aa785abd4f 100644 --- a/samples/inputs/switches/checking/package.json +++ b/samples/inputs/switches/checking/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/disabled/package.json b/samples/inputs/switches/disabled/package.json index 3bee7f470f..b0a686583b 100644 --- a/samples/inputs/switches/disabled/package.json +++ b/samples/inputs/switches/disabled/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/label/package.json b/samples/inputs/switches/label/package.json index cb9d5f67ea..cb84cbec8c 100644 --- a/samples/inputs/switches/label/package.json +++ b/samples/inputs/switches/label/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/overview/package.json b/samples/inputs/switches/overview/package.json index 135a392137..5f2d970e41 100644 --- a/samples/inputs/switches/overview/package.json +++ b/samples/inputs/switches/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/switches/styling/package.json b/samples/inputs/switches/styling/package.json index 87113634e4..aa785abd4f 100644 --- a/samples/inputs/switches/styling/package.json +++ b/samples/inputs/switches/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/form-integration/package.json b/samples/inputs/textarea/form-integration/package.json index 0587900703..fa8bd41935 100644 --- a/samples/inputs/textarea/form-integration/package.json +++ b/samples/inputs/textarea/form-integration/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/overview/package.json b/samples/inputs/textarea/overview/package.json index fdf947b935..0a20d5200e 100644 --- a/samples/inputs/textarea/overview/package.json +++ b/samples/inputs/textarea/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/resize/package.json b/samples/inputs/textarea/resize/package.json index 2f1ff331d4..39a41326ef 100644 --- a/samples/inputs/textarea/resize/package.json +++ b/samples/inputs/textarea/resize/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/slots/package.json b/samples/inputs/textarea/slots/package.json index 9a95c3eb4b..243d1bd325 100644 --- a/samples/inputs/textarea/slots/package.json +++ b/samples/inputs/textarea/slots/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/textarea/styling/package.json b/samples/inputs/textarea/styling/package.json index 1eff569334..0b2d7ca12b 100644 --- a/samples/inputs/textarea/styling/package.json +++ b/samples/inputs/textarea/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/advanced/package.json b/samples/inputs/tooltip/advanced/package.json index 3d7358fdda..b7ec5b1ca9 100644 --- a/samples/inputs/tooltip/advanced/package.json +++ b/samples/inputs/tooltip/advanced/package.json @@ -14,8 +14,8 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/overview/package.json b/samples/inputs/tooltip/overview/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/overview/package.json +++ b/samples/inputs/tooltip/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/placement/package.json b/samples/inputs/tooltip/placement/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/placement/package.json +++ b/samples/inputs/tooltip/placement/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/rich/package.json b/samples/inputs/tooltip/rich/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/rich/package.json +++ b/samples/inputs/tooltip/rich/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/styling/package.json b/samples/inputs/tooltip/styling/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/styling/package.json +++ b/samples/inputs/tooltip/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/inputs/tooltip/triggers/package.json b/samples/inputs/tooltip/triggers/package.json index 128174cc8a..29411f579e 100644 --- a/samples/inputs/tooltip/triggers/package.json +++ b/samples/inputs/tooltip/triggers/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/interactions/chat/features/package.json b/samples/interactions/chat/features/package.json index 069693855c..76cdb3d6ed 100644 --- a/samples/interactions/chat/features/package.json +++ b/samples/interactions/chat/features/package.json @@ -15,7 +15,7 @@ "dompurify": "^3.3.0", "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "marked": "^16.4.1", "marked-shiki": "^1.2.1", diff --git a/samples/interactions/chat/overview/package.json b/samples/interactions/chat/overview/package.json index a08b2485a2..3b4f754b2a 100644 --- a/samples/interactions/chat/overview/package.json +++ b/samples/interactions/chat/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/interactions/chat/styling/package.json b/samples/interactions/chat/styling/package.json index d1d786c692..a2bd512eac 100644 --- a/samples/interactions/chat/styling/package.json +++ b/samples/interactions/chat/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/customization/package.json b/samples/layouts/accordion/customization/package.json index ce8c54c020..429f5672ae 100644 --- a/samples/layouts/accordion/customization/package.json +++ b/samples/layouts/accordion/customization/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/nested-scenario/package.json b/samples/layouts/accordion/nested-scenario/package.json index 129d402c43..0de8a2ab8d 100644 --- a/samples/layouts/accordion/nested-scenario/package.json +++ b/samples/layouts/accordion/nested-scenario/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/accordion/overview/package.json b/samples/layouts/accordion/overview/package.json index d3ff5ac037..961a28afd0 100644 --- a/samples/layouts/accordion/overview/package.json +++ b/samples/layouts/accordion/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/icon/package.json b/samples/layouts/avatar/icon/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/avatar/icon/package.json +++ b/samples/layouts/avatar/icon/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/image/package.json b/samples/layouts/avatar/image/package.json index 3bcdedb922..2f2d5f6c2f 100644 --- a/samples/layouts/avatar/image/package.json +++ b/samples/layouts/avatar/image/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/initials/package.json b/samples/layouts/avatar/initials/package.json index b368bf23ea..68fe12ca7c 100644 --- a/samples/layouts/avatar/initials/package.json +++ b/samples/layouts/avatar/initials/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/shape/package.json b/samples/layouts/avatar/shape/package.json index af1a375f0a..d0738391cc 100644 --- a/samples/layouts/avatar/shape/package.json +++ b/samples/layouts/avatar/shape/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/size/package.json b/samples/layouts/avatar/size/package.json index a73cf09aac..879ffae633 100644 --- a/samples/layouts/avatar/size/package.json +++ b/samples/layouts/avatar/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/avatar/styling/package.json b/samples/layouts/avatar/styling/package.json index 21250228da..34380983cc 100644 --- a/samples/layouts/avatar/styling/package.json +++ b/samples/layouts/avatar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/horizontal/package.json b/samples/layouts/card/horizontal/package.json index 73f8aacf71..004169e389 100644 --- a/samples/layouts/card/horizontal/package.json +++ b/samples/layouts/card/horizontal/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/overview/package.json b/samples/layouts/card/overview/package.json index 6b47a3b2d0..54fad36895 100644 --- a/samples/layouts/card/overview/package.json +++ b/samples/layouts/card/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/semi-horizontal/package.json b/samples/layouts/card/semi-horizontal/package.json index fccef08ed8..a9f899bfe4 100644 --- a/samples/layouts/card/semi-horizontal/package.json +++ b/samples/layouts/card/semi-horizontal/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/card/styling/package.json b/samples/layouts/card/styling/package.json index d9bf85aaa1..3337e8a446 100644 --- a/samples/layouts/card/styling/package.json +++ b/samples/layouts/card/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/animations/package.json b/samples/layouts/carousel/animations/package.json index b5e5caa05f..0ff4fd96c9 100644 --- a/samples/layouts/carousel/animations/package.json +++ b/samples/layouts/carousel/animations/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/components/package.json b/samples/layouts/carousel/components/package.json index db1104df3a..03c7af5169 100644 --- a/samples/layouts/carousel/components/package.json +++ b/samples/layouts/carousel/components/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/overview/package.json b/samples/layouts/carousel/overview/package.json index 9bd93c009c..6b50e41689 100644 --- a/samples/layouts/carousel/overview/package.json +++ b/samples/layouts/carousel/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/carousel/thumbnail/package.json b/samples/layouts/carousel/thumbnail/package.json index 2249d10b01..bef41d38ce 100644 --- a/samples/layouts/carousel/thumbnail/package.json +++ b/samples/layouts/carousel/thumbnail/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/dashed/package.json b/samples/layouts/divider/dashed/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/dashed/package.json +++ b/samples/layouts/divider/dashed/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/middle/package.json b/samples/layouts/divider/middle/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/middle/package.json +++ b/samples/layouts/divider/middle/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/overview/package.json b/samples/layouts/divider/overview/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/overview/package.json +++ b/samples/layouts/divider/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/select/package.json b/samples/layouts/divider/select/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/select/package.json +++ b/samples/layouts/divider/select/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/divider/vertical/package.json b/samples/layouts/divider/vertical/package.json index 1f6a7db14e..61bafe3300 100644 --- a/samples/layouts/divider/vertical/package.json +++ b/samples/layouts/divider/vertical/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/customize-buttons/package.json b/samples/layouts/dock-manager/customize-buttons/package.json index f259a45694..ae5e22f7a2 100644 --- a/samples/layouts/dock-manager/customize-buttons/package.json +++ b/samples/layouts/dock-manager/customize-buttons/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/embedding-frames/package.json b/samples/layouts/dock-manager/embedding-frames/package.json index b80f3303f6..2face7c287 100644 --- a/samples/layouts/dock-manager/embedding-frames/package.json +++ b/samples/layouts/dock-manager/embedding-frames/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/overview/package.json b/samples/layouts/dock-manager/overview/package.json index f259a45694..ae5e22f7a2 100644 --- a/samples/layouts/dock-manager/overview/package.json +++ b/samples/layouts/dock-manager/overview/package.json @@ -12,7 +12,7 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/styling/package.json b/samples/layouts/dock-manager/styling/package.json index 4248b1b1b4..42b90154ff 100644 --- a/samples/layouts/dock-manager/styling/package.json +++ b/samples/layouts/dock-manager/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/dock-manager/updating-panes/package.json b/samples/layouts/dock-manager/updating-panes/package.json index 470a5e1b85..c0b47aba75 100644 --- a/samples/layouts/dock-manager/updating-panes/package.json +++ b/samples/layouts/dock-manager/updating-panes/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", "igniteui-react-dockmanager": "^19.4.0", - "igniteui-react-maps": "19.3.1", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/layouts/expansion-panel/component-customization/package.json b/samples/layouts/expansion-panel/component-customization/package.json index ae77667cf6..7484ca6f4a 100644 --- a/samples/layouts/expansion-panel/component-customization/package.json +++ b/samples/layouts/expansion-panel/component-customization/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/properties-and-events/package.json b/samples/layouts/expansion-panel/properties-and-events/package.json index 7033f85735..caea185c2b 100644 --- a/samples/layouts/expansion-panel/properties-and-events/package.json +++ b/samples/layouts/expansion-panel/properties-and-events/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/styling/package.json b/samples/layouts/expansion-panel/styling/package.json index 574184c514..71ff5931c8 100644 --- a/samples/layouts/expansion-panel/styling/package.json +++ b/samples/layouts/expansion-panel/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/expansion-panel/usage/package.json b/samples/layouts/expansion-panel/usage/package.json index b9d496f129..b7dcf2a4e1 100644 --- a/samples/layouts/expansion-panel/usage/package.json +++ b/samples/layouts/expansion-panel/usage/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/icon/sizing/package.json b/samples/layouts/icon/sizing/package.json index 78a31879e9..1b949ded98 100644 --- a/samples/layouts/icon/sizing/package.json +++ b/samples/layouts/icon/sizing/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/icon/styling/package.json b/samples/layouts/icon/styling/package.json index 7e3689594d..b8ef4c6113 100644 --- a/samples/layouts/icon/styling/package.json +++ b/samples/layouts/icon/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/animations/package.json b/samples/layouts/stepper/animations/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/animations/package.json +++ b/samples/layouts/stepper/animations/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/linear/package.json b/samples/layouts/stepper/linear/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/linear/package.json +++ b/samples/layouts/stepper/linear/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/orientation/package.json b/samples/layouts/stepper/orientation/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/orientation/package.json +++ b/samples/layouts/stepper/orientation/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/steptypes/package.json b/samples/layouts/stepper/steptypes/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/stepper/steptypes/package.json +++ b/samples/layouts/stepper/steptypes/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/stepper/styling/package.json b/samples/layouts/stepper/styling/package.json index c5f41872d2..c4c8a400ce 100644 --- a/samples/layouts/stepper/styling/package.json +++ b/samples/layouts/stepper/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/alignment/package.json b/samples/layouts/tabs/alignment/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/alignment/package.json +++ b/samples/layouts/tabs/alignment/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/overview/package.json b/samples/layouts/tabs/overview/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/overview/package.json +++ b/samples/layouts/tabs/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/prefix-suffix/package.json b/samples/layouts/tabs/prefix-suffix/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/prefix-suffix/package.json +++ b/samples/layouts/tabs/prefix-suffix/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/scrolling/package.json b/samples/layouts/tabs/scrolling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/scrolling/package.json +++ b/samples/layouts/tabs/scrolling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tabs/styling/package.json b/samples/layouts/tabs/styling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tabs/styling/package.json +++ b/samples/layouts/tabs/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/actions/package.json b/samples/layouts/tile-manager/actions/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/actions/package.json +++ b/samples/layouts/tile-manager/actions/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/columngap/package.json b/samples/layouts/tile-manager/columngap/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/columngap/package.json +++ b/samples/layouts/tile-manager/columngap/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/dragndrop/package.json b/samples/layouts/tile-manager/dragndrop/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/dragndrop/package.json +++ b/samples/layouts/tile-manager/dragndrop/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/layout/package.json b/samples/layouts/tile-manager/layout/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/layout/package.json +++ b/samples/layouts/tile-manager/layout/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/overview/package.json b/samples/layouts/tile-manager/overview/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/overview/package.json +++ b/samples/layouts/tile-manager/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/resize/package.json b/samples/layouts/tile-manager/resize/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/resize/package.json +++ b/samples/layouts/tile-manager/resize/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/layouts/tile-manager/styling/package.json b/samples/layouts/tile-manager/styling/package.json index 9d2b9274ff..92d502d62b 100644 --- a/samples/layouts/tile-manager/styling/package.json +++ b/samples/layouts/tile-manager/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/maps/geo-map/binding-data-csv/package.json b/samples/maps/geo-map/binding-data-csv/package.json index dd14a19d9f..0e9555f279 100644 --- a/samples/maps/geo-map/binding-data-csv/package.json +++ b/samples/maps/geo-map/binding-data-csv/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-json-points/package.json b/samples/maps/geo-map/binding-data-json-points/package.json index 62701cf2b1..8d4ca8d72d 100644 --- a/samples/maps/geo-map/binding-data-json-points/package.json +++ b/samples/maps/geo-map/binding-data-json-points/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-json-shapes/package.json b/samples/maps/geo-map/binding-data-json-shapes/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/binding-data-json-shapes/package.json +++ b/samples/maps/geo-map/binding-data-json-shapes/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-data-model/package.json b/samples/maps/geo-map/binding-data-model/package.json index 86fcdd8d67..dc6bcaaf42 100644 --- a/samples/maps/geo-map/binding-data-model/package.json +++ b/samples/maps/geo-map/binding-data-model/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-multiple-shapes/package.json b/samples/maps/geo-map/binding-multiple-shapes/package.json index ba696b46b8..c71556175e 100644 --- a/samples/maps/geo-map/binding-multiple-shapes/package.json +++ b/samples/maps/geo-map/binding-multiple-shapes/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-multiple-sources/package.json b/samples/maps/geo-map/binding-multiple-sources/package.json index 021ad00540..3e273e5a99 100644 --- a/samples/maps/geo-map/binding-multiple-sources/package.json +++ b/samples/maps/geo-map/binding-multiple-sources/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-points/package.json b/samples/maps/geo-map/binding-shp-points/package.json index 7bbf204f9a..f1ed739467 100644 --- a/samples/maps/geo-map/binding-shp-points/package.json +++ b/samples/maps/geo-map/binding-shp-points/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-polygons/package.json b/samples/maps/geo-map/binding-shp-polygons/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/binding-shp-polygons/package.json +++ b/samples/maps/geo-map/binding-shp-polygons/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/binding-shp-polylines/package.json b/samples/maps/geo-map/binding-shp-polylines/package.json index db3000ddc1..4736818d69 100644 --- a/samples/maps/geo-map/binding-shp-polylines/package.json +++ b/samples/maps/geo-map/binding-shp-polylines/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/custom-tooltips/package.json b/samples/maps/geo-map/custom-tooltips/package.json index 64be6401e8..247e3d1cf0 100644 --- a/samples/maps/geo-map/custom-tooltips/package.json +++ b/samples/maps/geo-map/custom-tooltips/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-all-imagery/package.json b/samples/maps/geo-map/display-all-imagery/package.json index e044eb6a77..0966e4c075 100644 --- a/samples/maps/geo-map/display-all-imagery/package.json +++ b/samples/maps/geo-map/display-all-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-azure-imagery/package.json b/samples/maps/geo-map/display-azure-imagery/package.json index 3e1dec8f6b..52eacd4a94 100644 --- a/samples/maps/geo-map/display-azure-imagery/package.json +++ b/samples/maps/geo-map/display-azure-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-bing-imagery/package.json b/samples/maps/geo-map/display-bing-imagery/package.json index d3a47a027f..d93202eb52 100644 --- a/samples/maps/geo-map/display-bing-imagery/package.json +++ b/samples/maps/geo-map/display-bing-imagery/package.json @@ -13,9 +13,9 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-custom-imagery/package.json b/samples/maps/geo-map/display-custom-imagery/package.json index 1b8b66b590..45146f6ada 100644 --- a/samples/maps/geo-map/display-custom-imagery/package.json +++ b/samples/maps/geo-map/display-custom-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-esri-imagery/package.json b/samples/maps/geo-map/display-esri-imagery/package.json index 8d77265c6f..a52b00779d 100644 --- a/samples/maps/geo-map/display-esri-imagery/package.json +++ b/samples/maps/geo-map/display-esri-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-heat-imagery/package.json b/samples/maps/geo-map/display-heat-imagery/package.json index d2b47f3d9b..b84268ce25 100644 --- a/samples/maps/geo-map/display-heat-imagery/package.json +++ b/samples/maps/geo-map/display-heat-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/display-osm-imagery/package.json b/samples/maps/geo-map/display-osm-imagery/package.json index f03ee0ed89..9040a515fe 100644 --- a/samples/maps/geo-map/display-osm-imagery/package.json +++ b/samples/maps/geo-map/display-osm-imagery/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-layouts/package.json b/samples/maps/geo-map/marker-layouts/package.json index 84f14271d8..c5e5fbcde3 100644 --- a/samples/maps/geo-map/marker-layouts/package.json +++ b/samples/maps/geo-map/marker-layouts/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-template/package.json b/samples/maps/geo-map/marker-template/package.json index 18b3263839..21d703a641 100644 --- a/samples/maps/geo-map/marker-template/package.json +++ b/samples/maps/geo-map/marker-template/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/marker-type/package.json b/samples/maps/geo-map/marker-type/package.json index 56ce884c6c..f59e0de33b 100644 --- a/samples/maps/geo-map/marker-type/package.json +++ b/samples/maps/geo-map/marker-type/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/nav-grid/package.json b/samples/maps/geo-map/nav-grid/package.json index 021ad00540..3e273e5a99 100644 --- a/samples/maps/geo-map/nav-grid/package.json +++ b/samples/maps/geo-map/nav-grid/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/navigation-only-panning/package.json b/samples/maps/geo-map/navigation-only-panning/package.json index 3070b4ae7a..9f4b5562bd 100644 --- a/samples/maps/geo-map/navigation-only-panning/package.json +++ b/samples/maps/geo-map/navigation-only-panning/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/navigation/package.json b/samples/maps/geo-map/navigation/package.json index 9e32534ea4..16f3adc48d 100644 --- a/samples/maps/geo-map/navigation/package.json +++ b/samples/maps/geo-map/navigation/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/overview/package.json b/samples/maps/geo-map/overview/package.json index d2646d66ad..23c480909d 100644 --- a/samples/maps/geo-map/overview/package.json +++ b/samples/maps/geo-map/overview/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/shape-selection/package.json b/samples/maps/geo-map/shape-selection/package.json index c8d21e11ae..fbe6e81a2f 100644 --- a/samples/maps/geo-map/shape-selection/package.json +++ b/samples/maps/geo-map/shape-selection/package.json @@ -12,10 +12,10 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-gauges": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-gauges": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "react-icons": "^5.3.0", diff --git a/samples/maps/geo-map/shape-styling/package.json b/samples/maps/geo-map/shape-styling/package.json index b199c03c56..9521398f45 100644 --- a/samples/maps/geo-map/shape-styling/package.json +++ b/samples/maps/geo-map/shape-styling/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/synchronization/package.json b/samples/maps/geo-map/synchronization/package.json index a19ef34be0..90560ae958 100644 --- a/samples/maps/geo-map/synchronization/package.json +++ b/samples/maps/geo-map/synchronization/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/triangulating-data/package.json b/samples/maps/geo-map/triangulating-data/package.json index dd837c57f4..a887f709de 100644 --- a/samples/maps/geo-map/triangulating-data/package.json +++ b/samples/maps/geo-map/triangulating-data/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-area-series/package.json b/samples/maps/geo-map/type-scatter-area-series/package.json index cd101f754e..974a950bea 100644 --- a/samples/maps/geo-map/type-scatter-area-series/package.json +++ b/samples/maps/geo-map/type-scatter-area-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-bubble-series/package.json b/samples/maps/geo-map/type-scatter-bubble-series/package.json index 5e56e8d779..1b76ecc0a4 100644 --- a/samples/maps/geo-map/type-scatter-bubble-series/package.json +++ b/samples/maps/geo-map/type-scatter-bubble-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-contour-series/package.json b/samples/maps/geo-map/type-scatter-contour-series/package.json index 7d7c88ab11..d8cb500e59 100644 --- a/samples/maps/geo-map/type-scatter-contour-series/package.json +++ b/samples/maps/geo-map/type-scatter-contour-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-density-series/package.json b/samples/maps/geo-map/type-scatter-density-series/package.json index e7117edc41..6f881699b4 100644 --- a/samples/maps/geo-map/type-scatter-density-series/package.json +++ b/samples/maps/geo-map/type-scatter-density-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-scatter-symbol-series/package.json b/samples/maps/geo-map/type-scatter-symbol-series/package.json index 21f7839350..540e0874ac 100644 --- a/samples/maps/geo-map/type-scatter-symbol-series/package.json +++ b/samples/maps/geo-map/type-scatter-symbol-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-shape-polygon-series/package.json b/samples/maps/geo-map/type-shape-polygon-series/package.json index c6305105ca..94cabb4158 100644 --- a/samples/maps/geo-map/type-shape-polygon-series/package.json +++ b/samples/maps/geo-map/type-shape-polygon-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/maps/geo-map/type-shape-polyline-series/package.json b/samples/maps/geo-map/type-shape-polyline-series/package.json index ae6f0ebef8..9aa257ded3 100644 --- a/samples/maps/geo-map/type-shape-polyline-series/package.json +++ b/samples/maps/geo-map/type-shape-polyline-series/package.json @@ -12,9 +12,9 @@ "test": "vitest" }, "dependencies": { - "igniteui-react-charts": "19.3.1", - "igniteui-react-core": "19.3.1", - "igniteui-react-maps": "19.3.1", + "igniteui-react-charts": "19.3.2", + "igniteui-react-core": "19.3.2", + "igniteui-react-maps": "19.3.2", "react": "^19.2.0", "react-dom": "^19.2.0", "tslib": "^2.4.0" diff --git a/samples/menus/nav-bar/overview/package.json b/samples/menus/nav-bar/overview/package.json index 80e179a8b1..9d979a8b51 100644 --- a/samples/menus/nav-bar/overview/package.json +++ b/samples/menus/nav-bar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-bar/styling/package.json b/samples/menus/nav-bar/styling/package.json index b655b39240..b608e96f8a 100644 --- a/samples/menus/nav-bar/styling/package.json +++ b/samples/menus/nav-bar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-drawer-items/package.json b/samples/menus/nav-drawer/add-drawer-items/package.json index f7ed4aa5d8..8b6525319a 100644 --- a/samples/menus/nav-drawer/add-drawer-items/package.json +++ b/samples/menus/nav-drawer/add-drawer-items/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-mini/package.json b/samples/menus/nav-drawer/add-mini/package.json index 387375046f..8f53b9c2f4 100644 --- a/samples/menus/nav-drawer/add-mini/package.json +++ b/samples/menus/nav-drawer/add-mini/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/add-positions-navbar/package.json b/samples/menus/nav-drawer/add-positions-navbar/package.json index 2ea722097e..282112f7f4 100644 --- a/samples/menus/nav-drawer/add-positions-navbar/package.json +++ b/samples/menus/nav-drawer/add-positions-navbar/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/menus/nav-drawer/styling/package.json b/samples/menus/nav-drawer/styling/package.json index 5339ce2664..7b935084ff 100644 --- a/samples/menus/nav-drawer/styling/package.json +++ b/samples/menus/nav-drawer/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-advanced-sample/package.json b/samples/notifications/banner/banner-advanced-sample/package.json index 8c0090ee8a..a9c91bbeb6 100644 --- a/samples/notifications/banner/banner-advanced-sample/package.json +++ b/samples/notifications/banner/banner-advanced-sample/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-1/package.json b/samples/notifications/banner/banner-sample-1/package.json index af56bdd62c..70dc47df60 100644 --- a/samples/notifications/banner/banner-sample-1/package.json +++ b/samples/notifications/banner/banner-sample-1/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-sample-2/package.json b/samples/notifications/banner/banner-sample-2/package.json index 6cf2351ffd..72a5a8a37b 100644 --- a/samples/notifications/banner/banner-sample-2/package.json +++ b/samples/notifications/banner/banner-sample-2/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/banner/banner-styling/package.json b/samples/notifications/banner/banner-styling/package.json index 46fbf76203..1e43150462 100644 --- a/samples/notifications/banner/banner-styling/package.json +++ b/samples/notifications/banner/banner-styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/closing-variations/package.json b/samples/notifications/dialog/closing-variations/package.json index c50ea928f4..4fccbe1063 100644 --- a/samples/notifications/dialog/closing-variations/package.json +++ b/samples/notifications/dialog/closing-variations/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/form/package.json b/samples/notifications/dialog/form/package.json index 525daa2cde..18a1d0aca7 100644 --- a/samples/notifications/dialog/form/package.json +++ b/samples/notifications/dialog/form/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/overview/package.json b/samples/notifications/dialog/overview/package.json index fddac2d44c..8e98bdd2ca 100644 --- a/samples/notifications/dialog/overview/package.json +++ b/samples/notifications/dialog/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/dialog/styling/package.json b/samples/notifications/dialog/styling/package.json index 2f1f7ee08d..36d6652b06 100644 --- a/samples/notifications/dialog/styling/package.json +++ b/samples/notifications/dialog/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/action-text/package.json b/samples/notifications/snackbar/action-text/package.json index add86c9e12..206dea73a9 100644 --- a/samples/notifications/snackbar/action-text/package.json +++ b/samples/notifications/snackbar/action-text/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/display-time/package.json b/samples/notifications/snackbar/display-time/package.json index b71f2badeb..d1aa94009f 100644 --- a/samples/notifications/snackbar/display-time/package.json +++ b/samples/notifications/snackbar/display-time/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/overview/package.json b/samples/notifications/snackbar/overview/package.json index 2c73a9a46b..dbe98fd111 100644 --- a/samples/notifications/snackbar/overview/package.json +++ b/samples/notifications/snackbar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/snackbar/styling/package.json b/samples/notifications/snackbar/styling/package.json index 8cbcefe564..55ac5d78a3 100644 --- a/samples/notifications/snackbar/styling/package.json +++ b/samples/notifications/snackbar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/overview/package.json b/samples/notifications/toast/overview/package.json index 06275a39d0..8c515bc2e5 100644 --- a/samples/notifications/toast/overview/package.json +++ b/samples/notifications/toast/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/properties/package.json b/samples/notifications/toast/properties/package.json index 0916466062..b9b27242fd 100644 --- a/samples/notifications/toast/properties/package.json +++ b/samples/notifications/toast/properties/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/notifications/toast/styling/package.json b/samples/notifications/toast/styling/package.json index 2956a5b082..72e7a02f57 100644 --- a/samples/notifications/toast/styling/package.json +++ b/samples/notifications/toast/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/disabled-dates/package.json b/samples/scheduling/calendar/disabled-dates/package.json index 472e1b19ff..078c349c02 100644 --- a/samples/scheduling/calendar/disabled-dates/package.json +++ b/samples/scheduling/calendar/disabled-dates/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/formatting/package.json b/samples/scheduling/calendar/formatting/package.json index 72074d26c0..a9b7f9b090 100644 --- a/samples/scheduling/calendar/formatting/package.json +++ b/samples/scheduling/calendar/formatting/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/header/package.json b/samples/scheduling/calendar/header/package.json index 91398cfd35..1043144768 100644 --- a/samples/scheduling/calendar/header/package.json +++ b/samples/scheduling/calendar/header/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-months/package.json b/samples/scheduling/calendar/multiple-months/package.json index 4f2a12d032..aa002a73c6 100644 --- a/samples/scheduling/calendar/multiple-months/package.json +++ b/samples/scheduling/calendar/multiple-months/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/multiple-selection/package.json b/samples/scheduling/calendar/multiple-selection/package.json index 42d6755c28..819301996d 100644 --- a/samples/scheduling/calendar/multiple-selection/package.json +++ b/samples/scheduling/calendar/multiple-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/overview/package.json b/samples/scheduling/calendar/overview/package.json index 3f0f0cc18f..40ef693eb9 100644 --- a/samples/scheduling/calendar/overview/package.json +++ b/samples/scheduling/calendar/overview/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/range-selection/package.json b/samples/scheduling/calendar/range-selection/package.json index 596187abf9..eb79f0983f 100644 --- a/samples/scheduling/calendar/range-selection/package.json +++ b/samples/scheduling/calendar/range-selection/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/size/package.json b/samples/scheduling/calendar/size/package.json index 013a20c89b..9cb3af0a44 100644 --- a/samples/scheduling/calendar/size/package.json +++ b/samples/scheduling/calendar/size/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/special-dates/package.json b/samples/scheduling/calendar/special-dates/package.json index d7251d7d17..ccc7846365 100644 --- a/samples/scheduling/calendar/special-dates/package.json +++ b/samples/scheduling/calendar/special-dates/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/styling/package.json b/samples/scheduling/calendar/styling/package.json index 8478a0fcb3..e362e923f3 100644 --- a/samples/scheduling/calendar/styling/package.json +++ b/samples/scheduling/calendar/styling/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/calendar/week-numbers/package.json b/samples/scheduling/calendar/week-numbers/package.json index 81d9e8054f..5c16852dd2 100644 --- a/samples/scheduling/calendar/week-numbers/package.json +++ b/samples/scheduling/calendar/week-numbers/package.json @@ -14,7 +14,7 @@ "dependencies": { "igniteui-dockmanager": "^1.17.0", "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/dialog-mode/package.json b/samples/scheduling/date-picker/dialog-mode/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/dialog-mode/package.json +++ b/samples/scheduling/date-picker/dialog-mode/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/form/package.json b/samples/scheduling/date-picker/form/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/form/package.json +++ b/samples/scheduling/date-picker/form/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/format/package.json b/samples/scheduling/date-picker/format/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/format/package.json +++ b/samples/scheduling/date-picker/format/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/overview/package.json b/samples/scheduling/date-picker/overview/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/overview/package.json +++ b/samples/scheduling/date-picker/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-picker/styling/package.json b/samples/scheduling/date-picker/styling/package.json index 6a34c3d207..472d3b11ce 100644 --- a/samples/scheduling/date-picker/styling/package.json +++ b/samples/scheduling/date-picker/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/custom-ranges/package.json b/samples/scheduling/date-range-picker/custom-ranges/package.json index d8f366f33e..857893dc09 100644 --- a/samples/scheduling/date-range-picker/custom-ranges/package.json +++ b/samples/scheduling/date-range-picker/custom-ranges/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/form/package.json b/samples/scheduling/date-range-picker/form/package.json index 8354f20ba2..0ed17e3ec9 100644 --- a/samples/scheduling/date-range-picker/form/package.json +++ b/samples/scheduling/date-range-picker/form/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/overview/package.json b/samples/scheduling/date-range-picker/overview/package.json index 7fd041b52a..9871526082 100644 --- a/samples/scheduling/date-range-picker/overview/package.json +++ b/samples/scheduling/date-range-picker/overview/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/slots/package.json b/samples/scheduling/date-range-picker/slots/package.json index 8878bd0e3b..8a65f1a7e5 100644 --- a/samples/scheduling/date-range-picker/slots/package.json +++ b/samples/scheduling/date-range-picker/slots/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0", diff --git a/samples/scheduling/date-range-picker/styling/package.json b/samples/scheduling/date-range-picker/styling/package.json index 2acde25e6f..eab518a9f1 100644 --- a/samples/scheduling/date-range-picker/styling/package.json +++ b/samples/scheduling/date-range-picker/styling/package.json @@ -13,7 +13,7 @@ }, "dependencies": { "igniteui-react": "^19.4.0", - "igniteui-react-core": "19.3.1", + "igniteui-react-core": "19.3.2", "igniteui-webcomponents": "^6.3.0", "react": "^19.2.0", "react-dom": "^19.2.0",